feat(clusterApp): initial version run in Ubuntu.

change fb to DRM
This commit is contained in:
2026-04-17 18:49:03 +08:00
parent 2774b26f8b
commit 0108dbb67f
2827 changed files with 859 additions and 19860 deletions

View File

@@ -0,0 +1,73 @@
set(CMAKE_C_COMPILER "D:/CodeBlocks/MinGW/bin/gcc.exe")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "5.1.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert")
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
set(CMAKE_C_PLATFORM_ID "MinGW")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "D:/CodeBlocks/MinGW/bin/ar.exe")
set(CMAKE_C_COMPILER_AR "D:/CodeBlocks/MinGW/bin/gcc-ar.exe")
set(CMAKE_RANLIB "D:/CodeBlocks/MinGW/bin/ranlib.exe")
set(CMAKE_C_COMPILER_RANLIB "D:/CodeBlocks/MinGW/bin/gcc-ranlib.exe")
set(CMAKE_LINKER "D:/CodeBlocks/MinGW/bin/ld.exe")
set(CMAKE_COMPILER_IS_GNUCC 1)
set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_C_ABI_COMPILED TRUE)
set(CMAKE_COMPILER_IS_MINGW 1)
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_C_COMPILER_ENV_VAR "CC")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
set(CMAKE_C_COMPILER_ID_RUN 1)
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_C_LINKER_PREFERENCE 10)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "4")
set(CMAKE_C_COMPILER_ABI "")
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
if(CMAKE_C_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_C_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
endif()
if(CMAKE_C_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "")
endif()
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "mingw32;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;mingw32;gcc;moldname;mingwex")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "D:/CodeBlocks/MinGW/lib/gcc/mingw32/5.1.0;D:/CodeBlocks/MinGW/lib/gcc;D:/CodeBlocks/MinGW/mingw32/lib;D:/CodeBlocks/MinGW/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@@ -0,0 +1,6 @@
set(CMAKE_RC_COMPILER "D:/CodeBlocks/MinGW/bin/windres.exe")
set(CMAKE_RC_COMPILER_ARG1 "")
set(CMAKE_RC_COMPILER_LOADED 1)
set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC)
set(CMAKE_RC_OUTPUT_EXTENSION .obj)
set(CMAKE_RC_COMPILER_ENV_VAR "RC")

View File

@@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Windows-10.0.15063")
set(CMAKE_HOST_SYSTEM_NAME "Windows")
set(CMAKE_HOST_SYSTEM_VERSION "10.0.15063")
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
set(CMAKE_SYSTEM "Windows-10.0.15063")
set(CMAKE_SYSTEM_NAME "Windows")
set(CMAKE_SYSTEM_VERSION "10.0.15063")
set(CMAKE_SYSTEM_PROCESSOR "AMD64")
set(CMAKE_CROSSCOMPILING "FALSE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@@ -0,0 +1,598 @@
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#if defined(__CLASSIC_C__)
/* cv-qualifiers did not exist in K&R C */
# define const
# define volatile
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
/* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_C)
# define COMPILER_ID "SunPro"
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# endif
#elif defined(__HP_cc)
# define COMPILER_ID "HP"
/* __HP_cc = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
#elif defined(__DECC)
# define COMPILER_ID "Compaq"
/* __DECC_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
# define COMPILER_ID "XL"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#elif defined(__TINYC__)
# define COMPILER_ID "TinyCC"
#elif defined(__BCC__)
# define COMPILER_ID "Bruce"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
# define COMPILER_ID "ADSP"
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
#elif defined(__ARMCC_VERSION)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
# define COMPILER_ID "SDCC"
# if defined(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
# else
/* SDCC = VRP */
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
# define COMPILER_ID "MIPSpro"
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__sgi)
# define COMPILER_ID "MIPSpro"
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
# define PLATFORM_ID "IRIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number components. */
#ifdef COMPILER_VERSION_MAJOR
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if !defined(__STDC__)
# if defined(_MSC_VER) && !defined(__clang__)
# define C_DIALECT "90"
# else
# define C_DIALECT
# endif
#elif __STDC_VERSION__ >= 201000L
# define C_DIALECT "11"
#elif __STDC_VERSION__ >= 199901L
# define C_DIALECT "99"
#else
# define C_DIALECT "90"
#endif
const char* info_language_dialect_default =
"INFO" ":" "dialect_default[" C_DIALECT "]";
/*--------------------------------------------------------------------------*/
#ifdef ID_VOID_MAIN
void main() {}
#else
# if defined(__CLASSIC_C__)
int main(argc, argv) int argc; char *argv[];
# else
int main(int argc, char* argv[])
# endif
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}
#endif

View File

@@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "D:/DevBuild/zlib-1.2.11")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "D:/DevBuild/zlib-1.2.11/build_win")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

View File

@@ -0,0 +1,22 @@
Determining if the function fseeko exists failed with the following output:
Change Dir: D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp
Run Build Command:"D:/CodeBlocks/MinGW/bin/mingw32-make.exe" "cmTC_44494/fast"
D:/CodeBlocks/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTC_44494.dir\build.make CMakeFiles/cmTC_44494.dir/build
mingw32-make.exe[1]: Entering directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_44494.dir/CheckFunctionExists.c.obj
D:\CodeBlocks\MinGW\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=fseeko -o CMakeFiles\cmTC_44494.dir\CheckFunctionExists.c.obj -c "C:\Program Files\CMake\share\cmake-3.10\Modules\CheckFunctionExists.c"
Linking C executable cmTC_44494.exe
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_44494.dir\link.txt --verbose=1
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_44494.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\cmTC_44494.dir/objects.a @CMakeFiles\cmTC_44494.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=fseeko -Wl,--whole-archive CMakeFiles\cmTC_44494.dir/objects.a -Wl,--no-whole-archive -o cmTC_44494.exe -Wl,--out-implib,libcmTC_44494.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_44494.dir\linklibs.rsp
CMakeFiles\cmTC_44494.dir/objects.a(CheckFunctionExists.c.obj):CheckFunctionExists.c:(.text+0xc): undefined reference to `fseeko'
collect2.exe: error: ld returned 1 exit status

View File

@@ -0,0 +1,299 @@
The system is: Windows - 10.0.15063 - AMD64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: D:/CodeBlocks/MinGW/bin/gcc.exe
Build flags:
Id flags:
The output was:
0
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe"
The C compiler identification is GNU, found in "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/3.10.2/CompilerIdC/a.exe"
Determining if the C compiler works passed with the following output:
Change Dir: D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp
Run Build Command:"D:/CodeBlocks/MinGW/bin/mingw32-make.exe" "cmTC_dcf2e/fast"
D:/CodeBlocks/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTC_dcf2e.dir\build.make CMakeFiles/cmTC_dcf2e.dir/build
mingw32-make.exe[1]: Entering directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_dcf2e.dir/testCCompiler.c.obj
D:\CodeBlocks\MinGW\bin\gcc.exe -o CMakeFiles\cmTC_dcf2e.dir\testCCompiler.c.obj -c D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\CMakeTmp\testCCompiler.c
Linking C executable cmTC_dcf2e.exe
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_dcf2e.dir\link.txt --verbose=1
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_dcf2e.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\cmTC_dcf2e.dir/objects.a @CMakeFiles\cmTC_dcf2e.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -Wl,--whole-archive CMakeFiles\cmTC_dcf2e.dir/objects.a -Wl,--no-whole-archive -o cmTC_dcf2e.exe -Wl,--out-implib,libcmTC_dcf2e.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_dcf2e.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp
Run Build Command:"D:/CodeBlocks/MinGW/bin/mingw32-make.exe" "cmTC_dc5e9/fast"
D:/CodeBlocks/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTC_dc5e9.dir\build.make CMakeFiles/cmTC_dc5e9.dir/build
mingw32-make.exe[1]: Entering directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_dc5e9.dir/CMakeCCompilerABI.c.obj
D:\CodeBlocks\MinGW\bin\gcc.exe -o CMakeFiles\cmTC_dc5e9.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c"
Linking C executable cmTC_dc5e9.exe
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_dc5e9.dir\link.txt --verbose=1
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_dc5e9.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\cmTC_dc5e9.dir/objects.a @CMakeFiles\cmTC_dc5e9.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -v -Wl,--whole-archive CMakeFiles\cmTC_dc5e9.dir/objects.a -Wl,--no-whole-archive -o cmTC_dc5e9.exe -Wl,--out-implib,libcmTC_dc5e9.dll.a -Wl,--major-image-version,0,--minor-image-version,0
Using built-in specs.
COLLECT_GCC=D:\CodeBlocks\MinGW\bin\gcc.exe
COLLECT_LTO_WRAPPER=D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/lto-wrapper.exe
Target: mingw32
Configured with: ../../../src/gcc-5.1.0/configure --build=mingw32 --enable-languages=ada,c,c++,fortran,lto,objc,obj-c++ --enable-libgomp --enable-lto --enable-graphite --enable-libstdcxx-debug --enable-threads=posix --enable-version-specific-runtime-libs --enable-fully-dynamic-string --enable-libstdcxx-threads --enable-libstdcxx-time --with-gnu-ld --disable-werror --disable-nls --disable-win32-registry --disable-symvers --enable-cxx-flags='-fno-function-sections -fno-data-sections -DWINPTHREAD_STATIC' --prefix=/mingw32tdm --with-local-prefix=/mingw32tdm --with-pkgversion=tdm-1 --enable-sjlj-exceptions --with-bugurl=http://tdm-gcc.tdragon.net/bugs
Thread model: posix
gcc version 5.1.0 (tdm-1)
COMPILER_PATH=D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/;D:/CodeBlocks/MinGW/bin/../libexec/gcc/;D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../../mingw32/bin/
LIBRARY_PATH=D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/;D:/CodeBlocks/MinGW/bin/../lib/gcc/;D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../../mingw32/lib/;D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_dc5e9.exe' '-mtune=generic' '-march=pentiumpro'
D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/collect2.exe -plugin D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/liblto_plugin-0.dll -plugin-opt=D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\XP-PC-~1\AppData\Local\Temp\cczUDzd0.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --exclude-libs=libpthread.a -Bdynamic -o cmTC_dc5e9.exe D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../crt2.o D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/crtbegin.o -LD:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0 -LD:/CodeBlocks/MinGW/bin/../lib/gcc -LD:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../../mingw32/lib -LD:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../.. --whole-archive CMakeFiles\cmTC_dc5e9.dir/objects.a --no-whole-archive --out-implib libcmTC_dc5e9.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -lmingw32 -lgcc -lmoldname -lmingwex -lmsvcrt D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/crtend.o
mingw32-make.exe[1]: Leaving directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"D:/CodeBlocks/MinGW/bin/mingw32-make.exe" "cmTC_dc5e9/fast"]
ignore line: [D:/CodeBlocks/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTC_dc5e9.dir\build.make CMakeFiles/cmTC_dc5e9.dir/build]
ignore line: [mingw32-make.exe[1]: Entering directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_dc5e9.dir/CMakeCCompilerABI.c.obj]
ignore line: [D:\CodeBlocks\MinGW\bin\gcc.exe -o CMakeFiles\cmTC_dc5e9.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c"]
ignore line: [Linking C executable cmTC_dc5e9.exe]
ignore line: ["C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_dc5e9.dir\link.txt --verbose=1]
ignore line: ["C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_dc5e9.dir/objects.a]
ignore line: [D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\cmTC_dc5e9.dir/objects.a @CMakeFiles\cmTC_dc5e9.dir\objects1.rsp]
ignore line: [D:\CodeBlocks\MinGW\bin\gcc.exe -v -Wl,--whole-archive CMakeFiles\cmTC_dc5e9.dir/objects.a -Wl,--no-whole-archive -o cmTC_dc5e9.exe -Wl,--out-implib,libcmTC_dc5e9.dll.a -Wl,--major-image-version,0,--minor-image-version,0 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=D:\CodeBlocks\MinGW\bin\gcc.exe]
ignore line: [COLLECT_LTO_WRAPPER=D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/lto-wrapper.exe]
ignore line: [Target: mingw32]
ignore line: [Configured with: ../../../src/gcc-5.1.0/configure --build=mingw32 --enable-languages=ada,c,c++,fortran,lto,objc,obj-c++ --enable-libgomp --enable-lto --enable-graphite --enable-libstdcxx-debug --enable-threads=posix --enable-version-specific-runtime-libs --enable-fully-dynamic-string --enable-libstdcxx-threads --enable-libstdcxx-time --with-gnu-ld --disable-werror --disable-nls --disable-win32-registry --disable-symvers --enable-cxx-flags='-fno-function-sections -fno-data-sections -DWINPTHREAD_STATIC' --prefix=/mingw32tdm --with-local-prefix=/mingw32tdm --with-pkgversion=tdm-1 --enable-sjlj-exceptions --with-bugurl=http://tdm-gcc.tdragon.net/bugs]
ignore line: [Thread model: posix]
ignore line: [gcc version 5.1.0 (tdm-1) ]
ignore line: [COMPILER_PATH=D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/]
ignore line: [D:/CodeBlocks/MinGW/bin/../libexec/gcc/]
ignore line: [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../../mingw32/bin/]
ignore line: [LIBRARY_PATH=D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/]
ignore line: [D:/CodeBlocks/MinGW/bin/../lib/gcc/]
ignore line: [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../../mingw32/lib/]
ignore line: [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_dc5e9.exe' '-mtune=generic' '-march=pentiumpro']
link line: [ D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/collect2.exe -plugin D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/liblto_plugin-0.dll -plugin-opt=D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\XP-PC-~1\AppData\Local\Temp\cczUDzd0.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --exclude-libs=libpthread.a -Bdynamic -o cmTC_dc5e9.exe D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../crt2.o D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/crtbegin.o -LD:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0 -LD:/CodeBlocks/MinGW/bin/../lib/gcc -LD:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../../mingw32/lib -LD:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../.. --whole-archive CMakeFiles\cmTC_dc5e9.dir/objects.a --no-whole-archive --out-implib libcmTC_dc5e9.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -lmingw32 -lgcc -lmoldname -lmingwex -lmsvcrt D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/crtend.o]
arg [D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/collect2.exe] ==> ignore
arg [-plugin] ==> ignore
arg [D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/liblto_plugin-0.dll] ==> ignore
arg [-plugin-opt=D:/CodeBlocks/MinGW/bin/../libexec/gcc/mingw32/5.1.0/lto-wrapper.exe] ==> ignore
arg [-plugin-opt=-fresolution=C:\Users\XP-PC-~1\AppData\Local\Temp\cczUDzd0.res] ==> ignore
arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore
arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore
arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore
arg [-plugin-opt=-pass-through=-lpthread] ==> ignore
arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore
arg [-plugin-opt=-pass-through=-lshell32] ==> ignore
arg [-plugin-opt=-pass-through=-luser32] ==> ignore
arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore
arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore
arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore
arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore
arg [--exclude-libs=libpthread.a] ==> ignore
arg [-Bdynamic] ==> ignore
arg [-o] ==> ignore
arg [cmTC_dc5e9.exe] ==> ignore
arg [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../crt2.o] ==> ignore
arg [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/crtbegin.o] ==> ignore
arg [-LD:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0] ==> dir [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0]
arg [-LD:/CodeBlocks/MinGW/bin/../lib/gcc] ==> dir [D:/CodeBlocks/MinGW/bin/../lib/gcc]
arg [-LD:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../../mingw32/lib] ==> dir [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../../mingw32/lib]
arg [-LD:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../..] ==> dir [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../..]
arg [--whole-archive] ==> ignore
arg [CMakeFiles\cmTC_dc5e9.dir/objects.a] ==> ignore
arg [--no-whole-archive] ==> ignore
arg [--out-implib] ==> ignore
arg [libcmTC_dc5e9.dll.a] ==> ignore
arg [--major-image-version] ==> ignore
arg [0] ==> ignore
arg [--minor-image-version] ==> ignore
arg [0] ==> ignore
arg [-lmingw32] ==> lib [mingw32]
arg [-lgcc] ==> lib [gcc]
arg [-lmoldname] ==> lib [moldname]
arg [-lmingwex] ==> lib [mingwex]
arg [-lmsvcrt] ==> lib [msvcrt]
arg [-lpthread] ==> lib [pthread]
arg [-ladvapi32] ==> lib [advapi32]
arg [-lshell32] ==> lib [shell32]
arg [-luser32] ==> lib [user32]
arg [-lkernel32] ==> lib [kernel32]
arg [-lmingw32] ==> lib [mingw32]
arg [-lgcc] ==> lib [gcc]
arg [-lmoldname] ==> lib [moldname]
arg [-lmingwex] ==> lib [mingwex]
arg [-lmsvcrt] ==> lib [msvcrt]
arg [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/crtend.o] ==> ignore
remove lib [msvcrt]
remove lib [msvcrt]
collapse library dir [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0] ==> [D:/CodeBlocks/MinGW/lib/gcc/mingw32/5.1.0]
collapse library dir [D:/CodeBlocks/MinGW/bin/../lib/gcc] ==> [D:/CodeBlocks/MinGW/lib/gcc]
collapse library dir [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../../../mingw32/lib] ==> [D:/CodeBlocks/MinGW/mingw32/lib]
collapse library dir [D:/CodeBlocks/MinGW/bin/../lib/gcc/mingw32/5.1.0/../../..] ==> [D:/CodeBlocks/MinGW/lib]
implicit libs: [mingw32;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;mingw32;gcc;moldname;mingwex]
implicit dirs: [D:/CodeBlocks/MinGW/lib/gcc/mingw32/5.1.0;D:/CodeBlocks/MinGW/lib/gcc;D:/CodeBlocks/MinGW/mingw32/lib;D:/CodeBlocks/MinGW/lib]
implicit fwks: []
Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp
Run Build Command:"D:/CodeBlocks/MinGW/bin/mingw32-make.exe" "cmTC_20990/fast"
D:/CodeBlocks/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTC_20990.dir\build.make CMakeFiles/cmTC_20990.dir/build
mingw32-make.exe[1]: Entering directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_20990.dir/feature_tests.c.obj
D:\CodeBlocks\MinGW\bin\gcc.exe -std=c11 -o CMakeFiles\cmTC_20990.dir\feature_tests.c.obj -c D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\feature_tests.c
Linking C executable cmTC_20990.exe
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_20990.dir\link.txt --verbose=1
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_20990.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\cmTC_20990.dir/objects.a @CMakeFiles\cmTC_20990.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -Wl,--whole-archive CMakeFiles\cmTC_20990.dir/objects.a -Wl,--no-whole-archive -o cmTC_20990.exe -Wl,--out-implib,libcmTC_20990.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_20990.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_restrict
Feature record: C_FEATURE:1c_static_assert
Feature record: C_FEATURE:1c_variadic_macros
Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp
Run Build Command:"D:/CodeBlocks/MinGW/bin/mingw32-make.exe" "cmTC_44455/fast"
D:/CodeBlocks/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTC_44455.dir\build.make CMakeFiles/cmTC_44455.dir/build
mingw32-make.exe[1]: Entering directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_44455.dir/feature_tests.c.obj
D:\CodeBlocks\MinGW\bin\gcc.exe -std=c99 -o CMakeFiles\cmTC_44455.dir\feature_tests.c.obj -c D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\feature_tests.c
Linking C executable cmTC_44455.exe
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_44455.dir\link.txt --verbose=1
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_44455.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\cmTC_44455.dir/objects.a @CMakeFiles\cmTC_44455.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -Wl,--whole-archive CMakeFiles\cmTC_44455.dir/objects.a -Wl,--no-whole-archive -o cmTC_44455.exe -Wl,--out-implib,libcmTC_44455.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_44455.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:1c_restrict
Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:1c_variadic_macros
Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp
Run Build Command:"D:/CodeBlocks/MinGW/bin/mingw32-make.exe" "cmTC_498fc/fast"
D:/CodeBlocks/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTC_498fc.dir\build.make CMakeFiles/cmTC_498fc.dir/build
mingw32-make.exe[1]: Entering directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_498fc.dir/feature_tests.c.obj
D:\CodeBlocks\MinGW\bin\gcc.exe -std=c90 -o CMakeFiles\cmTC_498fc.dir\feature_tests.c.obj -c D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\feature_tests.c
Linking C executable cmTC_498fc.exe
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_498fc.dir\link.txt --verbose=1
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_498fc.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\cmTC_498fc.dir/objects.a @CMakeFiles\cmTC_498fc.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -Wl,--whole-archive CMakeFiles\cmTC_498fc.dir/objects.a -Wl,--no-whole-archive -o cmTC_498fc.exe -Wl,--out-implib,libcmTC_498fc.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_498fc.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Feature record: C_FEATURE:1c_function_prototypes
Feature record: C_FEATURE:0c_restrict
Feature record: C_FEATURE:0c_static_assert
Feature record: C_FEATURE:0c_variadic_macros
Determining if the include file sys/types.h exists passed with the following output:
Change Dir: D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp
Run Build Command:"D:/CodeBlocks/MinGW/bin/mingw32-make.exe" "cmTC_1290c/fast"
D:/CodeBlocks/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTC_1290c.dir\build.make CMakeFiles/cmTC_1290c.dir/build
mingw32-make.exe[1]: Entering directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1290c.dir/CheckIncludeFile.c.obj
D:\CodeBlocks\MinGW\bin\gcc.exe -o CMakeFiles\cmTC_1290c.dir\CheckIncludeFile.c.obj -c D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\CMakeTmp\CheckIncludeFile.c
Linking C executable cmTC_1290c.exe
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_1290c.dir\link.txt --verbose=1
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_1290c.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\cmTC_1290c.dir/objects.a @CMakeFiles\cmTC_1290c.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -Wl,--whole-archive CMakeFiles\cmTC_1290c.dir/objects.a -Wl,--no-whole-archive -o cmTC_1290c.exe -Wl,--out-implib,libcmTC_1290c.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_1290c.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Determining if the include file stdint.h exists passed with the following output:
Change Dir: D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp
Run Build Command:"D:/CodeBlocks/MinGW/bin/mingw32-make.exe" "cmTC_ee80c/fast"
D:/CodeBlocks/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTC_ee80c.dir\build.make CMakeFiles/cmTC_ee80c.dir/build
mingw32-make.exe[1]: Entering directory 'D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_ee80c.dir/CheckIncludeFile.c.obj
D:\CodeBlocks\MinGW\bin\gcc.exe -o CMakeFiles\cmTC_ee80c.dir\CheckIncludeFile.c.obj -c D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\CMakeTmp\CheckIncludeFile.c

View File

@@ -0,0 +1,2 @@
# Hashes of file build rules.
f1c2b589d767cf11591a5c48477cb303 zlib1rc.obj

View File

@@ -0,0 +1,46 @@
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(off64_t))
char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}

View File

@@ -0,0 +1,63 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "MinGW Makefiles")
# The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCInformation.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeFindCodeBlocks.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeGenericSystem.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeRCInformation.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CheckCSourceCompiles.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CheckFunctionExists.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CheckIncludeFile.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CheckIncludeFileCXX.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/CheckTypeSize.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GNU-C.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GNU.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-GNU-C-ABI.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-GNU-C.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-GNU.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-windres.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/WindowsPaths.cmake"
"C:/Program Files/CMake/share/cmake-3.10/Modules/ProcessorCount.cmake"
"../CMakeLists.txt"
"CMakeFiles/3.10.2/CMakeCCompiler.cmake"
"CMakeFiles/3.10.2/CMakeRCCompiler.cmake"
"CMakeFiles/3.10.2/CMakeSystem.cmake"
"../zconf.h.cmakein"
"../zlib.pc.cmakein"
)
# The corresponding makefile is:
set(CMAKE_MAKEFILE_OUTPUTS
"Makefile"
"CMakeFiles/cmake.check_cache"
)
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
"zlib.pc"
"zconf.h"
"CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/minigzip64.dir/DependInfo.cmake"
"CMakeFiles/zlib.dir/DependInfo.cmake"
"CMakeFiles/zlibstatic.dir/DependInfo.cmake"
"CMakeFiles/example.dir/DependInfo.cmake"
"CMakeFiles/minigzip.dir/DependInfo.cmake"
"CMakeFiles/example64.dir/DependInfo.cmake"
)

View File

@@ -0,0 +1,292 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# The main recursive all target
all:
.PHONY : all
# The main recursive preinstall target
preinstall:
.PHONY : preinstall
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = "C:\Program Files\CMake\bin\cmake.exe"
# The command to remove a file.
RM = "C:\Program Files\CMake\bin\cmake.exe" -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = D:\DevBuild\zlib-1.2.11
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = D:\DevBuild\zlib-1.2.11\build_win
#=============================================================================
# Target rules for target CMakeFiles/minigzip64.dir
# All Build rule for target.
CMakeFiles/minigzip64.dir/all: CMakeFiles/zlib.dir/all
$(MAKE) -f CMakeFiles\minigzip64.dir\build.make CMakeFiles/minigzip64.dir/depend
$(MAKE) -f CMakeFiles\minigzip64.dir\build.make CMakeFiles/minigzip64.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=7,8 "Built target minigzip64"
.PHONY : CMakeFiles/minigzip64.dir/all
# Include target in all.
all: CMakeFiles/minigzip64.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/minigzip64.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 19
$(MAKE) -f CMakeFiles\Makefile2 CMakeFiles/minigzip64.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 0
.PHONY : CMakeFiles/minigzip64.dir/rule
# Convenience name for target.
minigzip64: CMakeFiles/minigzip64.dir/rule
.PHONY : minigzip64
# clean rule for target.
CMakeFiles/minigzip64.dir/clean:
$(MAKE) -f CMakeFiles\minigzip64.dir\build.make CMakeFiles/minigzip64.dir/clean
.PHONY : CMakeFiles/minigzip64.dir/clean
# clean rule for target.
clean: CMakeFiles/minigzip64.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/zlib.dir
# All Build rule for target.
CMakeFiles/zlib.dir/all:
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/depend
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 "Built target zlib"
.PHONY : CMakeFiles/zlib.dir/all
# Include target in all.
all: CMakeFiles/zlib.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/zlib.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 17
$(MAKE) -f CMakeFiles\Makefile2 CMakeFiles/zlib.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 0
.PHONY : CMakeFiles/zlib.dir/rule
# Convenience name for target.
zlib: CMakeFiles/zlib.dir/rule
.PHONY : zlib
# clean rule for target.
CMakeFiles/zlib.dir/clean:
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/clean
.PHONY : CMakeFiles/zlib.dir/clean
# clean rule for target.
clean: CMakeFiles/zlib.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/zlibstatic.dir
# All Build rule for target.
CMakeFiles/zlibstatic.dir/all:
$(MAKE) -f CMakeFiles\zlibstatic.dir\build.make CMakeFiles/zlibstatic.dir/depend
$(MAKE) -f CMakeFiles\zlibstatic.dir\build.make CMakeFiles/zlibstatic.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 "Built target zlibstatic"
.PHONY : CMakeFiles/zlibstatic.dir/all
# Include target in all.
all: CMakeFiles/zlibstatic.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/zlibstatic.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 16
$(MAKE) -f CMakeFiles\Makefile2 CMakeFiles/zlibstatic.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 0
.PHONY : CMakeFiles/zlibstatic.dir/rule
# Convenience name for target.
zlibstatic: CMakeFiles/zlibstatic.dir/rule
.PHONY : zlibstatic
# clean rule for target.
CMakeFiles/zlibstatic.dir/clean:
$(MAKE) -f CMakeFiles\zlibstatic.dir\build.make CMakeFiles/zlibstatic.dir/clean
.PHONY : CMakeFiles/zlibstatic.dir/clean
# clean rule for target.
clean: CMakeFiles/zlibstatic.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/example.dir
# All Build rule for target.
CMakeFiles/example.dir/all: CMakeFiles/zlib.dir/all
$(MAKE) -f CMakeFiles\example.dir\build.make CMakeFiles/example.dir/depend
$(MAKE) -f CMakeFiles\example.dir\build.make CMakeFiles/example.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=1,2 "Built target example"
.PHONY : CMakeFiles/example.dir/all
# Include target in all.
all: CMakeFiles/example.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/example.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 19
$(MAKE) -f CMakeFiles\Makefile2 CMakeFiles/example.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 0
.PHONY : CMakeFiles/example.dir/rule
# Convenience name for target.
example: CMakeFiles/example.dir/rule
.PHONY : example
# clean rule for target.
CMakeFiles/example.dir/clean:
$(MAKE) -f CMakeFiles\example.dir\build.make CMakeFiles/example.dir/clean
.PHONY : CMakeFiles/example.dir/clean
# clean rule for target.
clean: CMakeFiles/example.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/minigzip.dir
# All Build rule for target.
CMakeFiles/minigzip.dir/all: CMakeFiles/zlib.dir/all
$(MAKE) -f CMakeFiles\minigzip.dir\build.make CMakeFiles/minigzip.dir/depend
$(MAKE) -f CMakeFiles\minigzip.dir\build.make CMakeFiles/minigzip.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=5,6 "Built target minigzip"
.PHONY : CMakeFiles/minigzip.dir/all
# Include target in all.
all: CMakeFiles/minigzip.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/minigzip.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 19
$(MAKE) -f CMakeFiles\Makefile2 CMakeFiles/minigzip.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 0
.PHONY : CMakeFiles/minigzip.dir/rule
# Convenience name for target.
minigzip: CMakeFiles/minigzip.dir/rule
.PHONY : minigzip
# clean rule for target.
CMakeFiles/minigzip.dir/clean:
$(MAKE) -f CMakeFiles\minigzip.dir\build.make CMakeFiles/minigzip.dir/clean
.PHONY : CMakeFiles/minigzip.dir/clean
# clean rule for target.
clean: CMakeFiles/minigzip.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/example64.dir
# All Build rule for target.
CMakeFiles/example64.dir/all: CMakeFiles/zlib.dir/all
$(MAKE) -f CMakeFiles\example64.dir\build.make CMakeFiles/example64.dir/depend
$(MAKE) -f CMakeFiles\example64.dir\build.make CMakeFiles/example64.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=3,4 "Built target example64"
.PHONY : CMakeFiles/example64.dir/all
# Include target in all.
all: CMakeFiles/example64.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/example64.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 19
$(MAKE) -f CMakeFiles\Makefile2 CMakeFiles/example64.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles 0
.PHONY : CMakeFiles/example64.dir/rule
# Convenience name for target.
example64: CMakeFiles/example64.dir/rule
.PHONY : example64
# clean rule for target.
CMakeFiles/example64.dir/clean:
$(MAKE) -f CMakeFiles\example64.dir\build.make CMakeFiles/example64.dir/clean
.PHONY : CMakeFiles/example64.dir/clean
# clean rule for target.
clean: CMakeFiles/example64.dir/clean
.PHONY : clean
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@@ -0,0 +1,13 @@
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/minigzip64.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlibstatic.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/example.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/minigzip.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/example64.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/rebuild_cache.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/test.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/edit_cache.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/list_install_components.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/install/local.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/install.dir
D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/install/strip.dir

View File

@@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@@ -0,0 +1,40 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
..//zlib.h
zconf.h
../zconf.h
D:/DevBuild/zlib-1.2.11/test/example.c
zlib.h
D:/DevBuild/zlib-1.2.11/test/zlib.h
stdio.h
-
string.h
-
stdlib.h
-
zconf.h
stddef.h
-
windows.h
-
limits.h
-
sys/types.h
-
stdarg.h
-
stddef.h
-
unistd.h
-
unixio.h
-

View File

@@ -0,0 +1,29 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/DevBuild/zlib-1.2.11/test/example.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/example.dir/test/example.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"NO_FSEEKO"
"_LARGEFILE64_SOURCE=1"
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"."
"../"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,116 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = "C:\Program Files\CMake\bin\cmake.exe"
# The command to remove a file.
RM = "C:\Program Files\CMake\bin\cmake.exe" -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = D:\DevBuild\zlib-1.2.11
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = D:\DevBuild\zlib-1.2.11\build_win
# Include any dependencies generated for this target.
include CMakeFiles/example.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/example.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/example.dir/flags.make
CMakeFiles/example.dir/test/example.obj: CMakeFiles/example.dir/flags.make
CMakeFiles/example.dir/test/example.obj: CMakeFiles/example.dir/includes_C.rsp
CMakeFiles/example.dir/test/example.obj: ../test/example.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/example.dir/test/example.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\example.dir\test\example.obj -c D:\DevBuild\zlib-1.2.11\test\example.c
CMakeFiles/example.dir/test/example.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/example.dir/test/example.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\test\example.c > CMakeFiles\example.dir\test\example.i
CMakeFiles/example.dir/test/example.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/example.dir/test/example.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\test\example.c -o CMakeFiles\example.dir\test\example.s
CMakeFiles/example.dir/test/example.obj.requires:
.PHONY : CMakeFiles/example.dir/test/example.obj.requires
CMakeFiles/example.dir/test/example.obj.provides: CMakeFiles/example.dir/test/example.obj.requires
$(MAKE) -f CMakeFiles\example.dir\build.make CMakeFiles/example.dir/test/example.obj.provides.build
.PHONY : CMakeFiles/example.dir/test/example.obj.provides
CMakeFiles/example.dir/test/example.obj.provides.build: CMakeFiles/example.dir/test/example.obj
# Object files for target example
example_OBJECTS = \
"CMakeFiles/example.dir/test/example.obj"
# External object files for target example
example_EXTERNAL_OBJECTS =
../zlib_built/example.exe: CMakeFiles/example.dir/test/example.obj
../zlib_built/example.exe: CMakeFiles/example.dir/build.make
../zlib_built/example.exe: ../zlib_built/libzlib.dll.a
../zlib_built/example.exe: CMakeFiles/example.dir/linklibs.rsp
../zlib_built/example.exe: CMakeFiles/example.dir/objects1.rsp
../zlib_built/example.exe: CMakeFiles/example.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable ..\zlib_built\example.exe"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\example.dir\link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/example.dir/build: ../zlib_built/example.exe
.PHONY : CMakeFiles/example.dir/build
CMakeFiles/example.dir/requires: CMakeFiles/example.dir/test/example.obj.requires
.PHONY : CMakeFiles/example.dir/requires
CMakeFiles/example.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles\example.dir\cmake_clean.cmake
.PHONY : CMakeFiles/example.dir/clean
CMakeFiles/example.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" D:\DevBuild\zlib-1.2.11 D:\DevBuild\zlib-1.2.11 D:\DevBuild\zlib-1.2.11\build_win D:\DevBuild\zlib-1.2.11\build_win D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\example.dir\DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/example.dir/depend

View File

@@ -0,0 +1,12 @@
file(REMOVE_RECURSE
"CMakeFiles/example.dir/test/example.obj"
"../zlib_built/example.pdb"
"../zlib_built/example.exe"
"../zlib_built/example.exe.manifest"
"../zlib_built/libexample.dll.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/example.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,7 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
CMakeFiles/example.dir/test/example.obj
..//zlib.h
D:/DevBuild/zlib-1.2.11/test/example.c
zconf.h

View File

@@ -0,0 +1,7 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
CMakeFiles/example.dir/test/example.obj: ../zlib.h
CMakeFiles/example.dir/test/example.obj: ../test/example.c
CMakeFiles/example.dir/test/example.obj: zconf.h

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# compile C with D:/CodeBlocks/MinGW/bin/gcc.exe
C_FLAGS = -g
C_DEFINES = -DNO_FSEEKO -D_LARGEFILE64_SOURCE=1
C_INCLUDES = @CMakeFiles/example.dir/includes_C.rsp

View File

@@ -0,0 +1 @@
-ID:/DevBuild/zlib-1.2.11/build_win -ID:/DevBuild/zlib-1.2.11

View File

@@ -0,0 +1,3 @@
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\example.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\example.dir/objects.a @CMakeFiles\example.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -g -Wl,--whole-archive CMakeFiles\example.dir/objects.a -Wl,--no-whole-archive -o ..\zlib_built\example.exe -Wl,--out-implib,..\zlib_built\libexample.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\example.dir\linklibs.rsp

View File

@@ -0,0 +1 @@
../zlib_built/libzlib.dll.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@@ -0,0 +1 @@
CMakeFiles/example.dir/test/example.obj

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2

View File

@@ -0,0 +1,40 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
..//zlib.h
zconf.h
../zconf.h
D:/DevBuild/zlib-1.2.11/test/example.c
zlib.h
D:/DevBuild/zlib-1.2.11/test/zlib.h
stdio.h
-
string.h
-
stdlib.h
-
zconf.h
stddef.h
-
windows.h
-
limits.h
-
sys/types.h
-
stdarg.h
-
stddef.h
-
unistd.h
-
unixio.h
-

View File

@@ -0,0 +1,29 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/DevBuild/zlib-1.2.11/test/example.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/example64.dir/test/example.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"NO_FSEEKO"
"_LARGEFILE64_SOURCE=1"
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"."
"../"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,116 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = "C:\Program Files\CMake\bin\cmake.exe"
# The command to remove a file.
RM = "C:\Program Files\CMake\bin\cmake.exe" -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = D:\DevBuild\zlib-1.2.11
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = D:\DevBuild\zlib-1.2.11\build_win
# Include any dependencies generated for this target.
include CMakeFiles/example64.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/example64.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/example64.dir/flags.make
CMakeFiles/example64.dir/test/example.obj: CMakeFiles/example64.dir/flags.make
CMakeFiles/example64.dir/test/example.obj: CMakeFiles/example64.dir/includes_C.rsp
CMakeFiles/example64.dir/test/example.obj: ../test/example.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/example64.dir/test/example.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\example64.dir\test\example.obj -c D:\DevBuild\zlib-1.2.11\test\example.c
CMakeFiles/example64.dir/test/example.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/example64.dir/test/example.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\test\example.c > CMakeFiles\example64.dir\test\example.i
CMakeFiles/example64.dir/test/example.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/example64.dir/test/example.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\test\example.c -o CMakeFiles\example64.dir\test\example.s
CMakeFiles/example64.dir/test/example.obj.requires:
.PHONY : CMakeFiles/example64.dir/test/example.obj.requires
CMakeFiles/example64.dir/test/example.obj.provides: CMakeFiles/example64.dir/test/example.obj.requires
$(MAKE) -f CMakeFiles\example64.dir\build.make CMakeFiles/example64.dir/test/example.obj.provides.build
.PHONY : CMakeFiles/example64.dir/test/example.obj.provides
CMakeFiles/example64.dir/test/example.obj.provides.build: CMakeFiles/example64.dir/test/example.obj
# Object files for target example64
example64_OBJECTS = \
"CMakeFiles/example64.dir/test/example.obj"
# External object files for target example64
example64_EXTERNAL_OBJECTS =
../zlib_built/example64.exe: CMakeFiles/example64.dir/test/example.obj
../zlib_built/example64.exe: CMakeFiles/example64.dir/build.make
../zlib_built/example64.exe: ../zlib_built/libzlib.dll.a
../zlib_built/example64.exe: CMakeFiles/example64.dir/linklibs.rsp
../zlib_built/example64.exe: CMakeFiles/example64.dir/objects1.rsp
../zlib_built/example64.exe: CMakeFiles/example64.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable ..\zlib_built\example64.exe"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\example64.dir\link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/example64.dir/build: ../zlib_built/example64.exe
.PHONY : CMakeFiles/example64.dir/build
CMakeFiles/example64.dir/requires: CMakeFiles/example64.dir/test/example.obj.requires
.PHONY : CMakeFiles/example64.dir/requires
CMakeFiles/example64.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles\example64.dir\cmake_clean.cmake
.PHONY : CMakeFiles/example64.dir/clean
CMakeFiles/example64.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" D:\DevBuild\zlib-1.2.11 D:\DevBuild\zlib-1.2.11 D:\DevBuild\zlib-1.2.11\build_win D:\DevBuild\zlib-1.2.11\build_win D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\example64.dir\DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/example64.dir/depend

View File

@@ -0,0 +1,12 @@
file(REMOVE_RECURSE
"CMakeFiles/example64.dir/test/example.obj"
"../zlib_built/example64.pdb"
"../zlib_built/example64.exe"
"../zlib_built/example64.exe.manifest"
"../zlib_built/libexample64.dll.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/example64.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,7 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
CMakeFiles/example64.dir/test/example.obj
..//zlib.h
D:/DevBuild/zlib-1.2.11/test/example.c
zconf.h

View File

@@ -0,0 +1,7 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
CMakeFiles/example64.dir/test/example.obj: ../zlib.h
CMakeFiles/example64.dir/test/example.obj: ../test/example.c
CMakeFiles/example64.dir/test/example.obj: zconf.h

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# compile C with D:/CodeBlocks/MinGW/bin/gcc.exe
C_FLAGS = -g -D_FILE_OFFSET_BITS=64
C_DEFINES = -DNO_FSEEKO -D_LARGEFILE64_SOURCE=1
C_INCLUDES = @CMakeFiles/example64.dir/includes_C.rsp

View File

@@ -0,0 +1 @@
-ID:/DevBuild/zlib-1.2.11/build_win -ID:/DevBuild/zlib-1.2.11

View File

@@ -0,0 +1,3 @@
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\example64.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\example64.dir/objects.a @CMakeFiles\example64.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -g -Wl,--whole-archive CMakeFiles\example64.dir/objects.a -Wl,--no-whole-archive -o ..\zlib_built\example64.exe -Wl,--out-implib,..\zlib_built\libexample64.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\example64.dir\linklibs.rsp

View File

@@ -0,0 +1 @@
../zlib_built/libzlib.dll.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@@ -0,0 +1 @@
CMakeFiles/example64.dir/test/example.obj

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 3
CMAKE_PROGRESS_2 = 4

View File

@@ -0,0 +1,34 @@
const char features[] = {"\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304
"1"
#else
"0"
#endif
"c_function_prototypes\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
"1"
#else
"0"
#endif
"c_restrict\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L
"1"
#else
"0"
#endif
"c_static_assert\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
"1"
#else
"0"
#endif
"c_variadic_macros\n"
};
int main(int argc, char** argv) { (void)argv; return features[argc]; }

View File

@@ -0,0 +1,58 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
..//zlib.h
zconf.h
../zconf.h
D:/DevBuild/zlib-1.2.11/test/minigzip.c
zlib.h
D:/DevBuild/zlib-1.2.11/test/zlib.h
stdio.h
-
string.h
-
stdlib.h
-
sys/types.h
-
sys/mman.h
-
sys/stat.h
-
fcntl.h
-
io.h
-
stdlib.h
-
unix.h
-
windows.h
-
unistd.h
-
zconf.h
stddef.h
-
windows.h
-
limits.h
-
sys/types.h
-
stdarg.h
-
stddef.h
-
unistd.h
-
unixio.h
-

View File

@@ -0,0 +1,29 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/DevBuild/zlib-1.2.11/test/minigzip.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/minigzip.dir/test/minigzip.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"NO_FSEEKO"
"_LARGEFILE64_SOURCE=1"
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"."
"../"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,116 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = "C:\Program Files\CMake\bin\cmake.exe"
# The command to remove a file.
RM = "C:\Program Files\CMake\bin\cmake.exe" -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = D:\DevBuild\zlib-1.2.11
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = D:\DevBuild\zlib-1.2.11\build_win
# Include any dependencies generated for this target.
include CMakeFiles/minigzip.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/minigzip.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/minigzip.dir/flags.make
CMakeFiles/minigzip.dir/test/minigzip.obj: CMakeFiles/minigzip.dir/flags.make
CMakeFiles/minigzip.dir/test/minigzip.obj: CMakeFiles/minigzip.dir/includes_C.rsp
CMakeFiles/minigzip.dir/test/minigzip.obj: ../test/minigzip.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/minigzip.dir/test/minigzip.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\minigzip.dir\test\minigzip.obj -c D:\DevBuild\zlib-1.2.11\test\minigzip.c
CMakeFiles/minigzip.dir/test/minigzip.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/minigzip.dir/test/minigzip.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\test\minigzip.c > CMakeFiles\minigzip.dir\test\minigzip.i
CMakeFiles/minigzip.dir/test/minigzip.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/minigzip.dir/test/minigzip.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\test\minigzip.c -o CMakeFiles\minigzip.dir\test\minigzip.s
CMakeFiles/minigzip.dir/test/minigzip.obj.requires:
.PHONY : CMakeFiles/minigzip.dir/test/minigzip.obj.requires
CMakeFiles/minigzip.dir/test/minigzip.obj.provides: CMakeFiles/minigzip.dir/test/minigzip.obj.requires
$(MAKE) -f CMakeFiles\minigzip.dir\build.make CMakeFiles/minigzip.dir/test/minigzip.obj.provides.build
.PHONY : CMakeFiles/minigzip.dir/test/minigzip.obj.provides
CMakeFiles/minigzip.dir/test/minigzip.obj.provides.build: CMakeFiles/minigzip.dir/test/minigzip.obj
# Object files for target minigzip
minigzip_OBJECTS = \
"CMakeFiles/minigzip.dir/test/minigzip.obj"
# External object files for target minigzip
minigzip_EXTERNAL_OBJECTS =
../zlib_built/minigzip.exe: CMakeFiles/minigzip.dir/test/minigzip.obj
../zlib_built/minigzip.exe: CMakeFiles/minigzip.dir/build.make
../zlib_built/minigzip.exe: ../zlib_built/libzlib.dll.a
../zlib_built/minigzip.exe: CMakeFiles/minigzip.dir/linklibs.rsp
../zlib_built/minigzip.exe: CMakeFiles/minigzip.dir/objects1.rsp
../zlib_built/minigzip.exe: CMakeFiles/minigzip.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable ..\zlib_built\minigzip.exe"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\minigzip.dir\link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/minigzip.dir/build: ../zlib_built/minigzip.exe
.PHONY : CMakeFiles/minigzip.dir/build
CMakeFiles/minigzip.dir/requires: CMakeFiles/minigzip.dir/test/minigzip.obj.requires
.PHONY : CMakeFiles/minigzip.dir/requires
CMakeFiles/minigzip.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles\minigzip.dir\cmake_clean.cmake
.PHONY : CMakeFiles/minigzip.dir/clean
CMakeFiles/minigzip.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" D:\DevBuild\zlib-1.2.11 D:\DevBuild\zlib-1.2.11 D:\DevBuild\zlib-1.2.11\build_win D:\DevBuild\zlib-1.2.11\build_win D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\minigzip.dir\DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/minigzip.dir/depend

View File

@@ -0,0 +1,12 @@
file(REMOVE_RECURSE
"CMakeFiles/minigzip.dir/test/minigzip.obj"
"../zlib_built/minigzip.pdb"
"../zlib_built/minigzip.exe"
"../zlib_built/minigzip.exe.manifest"
"../zlib_built/libminigzip.dll.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/minigzip.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,7 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
CMakeFiles/minigzip.dir/test/minigzip.obj
..//zlib.h
D:/DevBuild/zlib-1.2.11/test/minigzip.c
zconf.h

View File

@@ -0,0 +1,7 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
CMakeFiles/minigzip.dir/test/minigzip.obj: ../zlib.h
CMakeFiles/minigzip.dir/test/minigzip.obj: ../test/minigzip.c
CMakeFiles/minigzip.dir/test/minigzip.obj: zconf.h

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# compile C with D:/CodeBlocks/MinGW/bin/gcc.exe
C_FLAGS = -g
C_DEFINES = -DNO_FSEEKO -D_LARGEFILE64_SOURCE=1
C_INCLUDES = @CMakeFiles/minigzip.dir/includes_C.rsp

View File

@@ -0,0 +1 @@
-ID:/DevBuild/zlib-1.2.11/build_win -ID:/DevBuild/zlib-1.2.11

View File

@@ -0,0 +1,3 @@
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\minigzip.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\minigzip.dir/objects.a @CMakeFiles\minigzip.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -g -Wl,--whole-archive CMakeFiles\minigzip.dir/objects.a -Wl,--no-whole-archive -o ..\zlib_built\minigzip.exe -Wl,--out-implib,..\zlib_built\libminigzip.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\minigzip.dir\linklibs.rsp

View File

@@ -0,0 +1 @@
../zlib_built/libzlib.dll.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@@ -0,0 +1 @@
CMakeFiles/minigzip.dir/test/minigzip.obj

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 5
CMAKE_PROGRESS_2 = 6

View File

@@ -0,0 +1,58 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
..//zlib.h
zconf.h
../zconf.h
D:/DevBuild/zlib-1.2.11/test/minigzip.c
zlib.h
D:/DevBuild/zlib-1.2.11/test/zlib.h
stdio.h
-
string.h
-
stdlib.h
-
sys/types.h
-
sys/mman.h
-
sys/stat.h
-
fcntl.h
-
io.h
-
stdlib.h
-
unix.h
-
windows.h
-
unistd.h
-
zconf.h
stddef.h
-
windows.h
-
limits.h
-
sys/types.h
-
stdarg.h
-
stddef.h
-
unistd.h
-
unixio.h
-

View File

@@ -0,0 +1,29 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/DevBuild/zlib-1.2.11/test/minigzip.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/minigzip64.dir/test/minigzip.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"NO_FSEEKO"
"_LARGEFILE64_SOURCE=1"
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"."
"../"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,116 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = "C:\Program Files\CMake\bin\cmake.exe"
# The command to remove a file.
RM = "C:\Program Files\CMake\bin\cmake.exe" -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = D:\DevBuild\zlib-1.2.11
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = D:\DevBuild\zlib-1.2.11\build_win
# Include any dependencies generated for this target.
include CMakeFiles/minigzip64.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/minigzip64.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/minigzip64.dir/flags.make
CMakeFiles/minigzip64.dir/test/minigzip.obj: CMakeFiles/minigzip64.dir/flags.make
CMakeFiles/minigzip64.dir/test/minigzip.obj: CMakeFiles/minigzip64.dir/includes_C.rsp
CMakeFiles/minigzip64.dir/test/minigzip.obj: ../test/minigzip.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/minigzip64.dir/test/minigzip.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\minigzip64.dir\test\minigzip.obj -c D:\DevBuild\zlib-1.2.11\test\minigzip.c
CMakeFiles/minigzip64.dir/test/minigzip.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/minigzip64.dir/test/minigzip.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\test\minigzip.c > CMakeFiles\minigzip64.dir\test\minigzip.i
CMakeFiles/minigzip64.dir/test/minigzip.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/minigzip64.dir/test/minigzip.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\test\minigzip.c -o CMakeFiles\minigzip64.dir\test\minigzip.s
CMakeFiles/minigzip64.dir/test/minigzip.obj.requires:
.PHONY : CMakeFiles/minigzip64.dir/test/minigzip.obj.requires
CMakeFiles/minigzip64.dir/test/minigzip.obj.provides: CMakeFiles/minigzip64.dir/test/minigzip.obj.requires
$(MAKE) -f CMakeFiles\minigzip64.dir\build.make CMakeFiles/minigzip64.dir/test/minigzip.obj.provides.build
.PHONY : CMakeFiles/minigzip64.dir/test/minigzip.obj.provides
CMakeFiles/minigzip64.dir/test/minigzip.obj.provides.build: CMakeFiles/minigzip64.dir/test/minigzip.obj
# Object files for target minigzip64
minigzip64_OBJECTS = \
"CMakeFiles/minigzip64.dir/test/minigzip.obj"
# External object files for target minigzip64
minigzip64_EXTERNAL_OBJECTS =
../zlib_built/minigzip64.exe: CMakeFiles/minigzip64.dir/test/minigzip.obj
../zlib_built/minigzip64.exe: CMakeFiles/minigzip64.dir/build.make
../zlib_built/minigzip64.exe: ../zlib_built/libzlib.dll.a
../zlib_built/minigzip64.exe: CMakeFiles/minigzip64.dir/linklibs.rsp
../zlib_built/minigzip64.exe: CMakeFiles/minigzip64.dir/objects1.rsp
../zlib_built/minigzip64.exe: CMakeFiles/minigzip64.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable ..\zlib_built\minigzip64.exe"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\minigzip64.dir\link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/minigzip64.dir/build: ../zlib_built/minigzip64.exe
.PHONY : CMakeFiles/minigzip64.dir/build
CMakeFiles/minigzip64.dir/requires: CMakeFiles/minigzip64.dir/test/minigzip.obj.requires
.PHONY : CMakeFiles/minigzip64.dir/requires
CMakeFiles/minigzip64.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles\minigzip64.dir\cmake_clean.cmake
.PHONY : CMakeFiles/minigzip64.dir/clean
CMakeFiles/minigzip64.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" D:\DevBuild\zlib-1.2.11 D:\DevBuild\zlib-1.2.11 D:\DevBuild\zlib-1.2.11\build_win D:\DevBuild\zlib-1.2.11\build_win D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\minigzip64.dir\DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/minigzip64.dir/depend

View File

@@ -0,0 +1,12 @@
file(REMOVE_RECURSE
"CMakeFiles/minigzip64.dir/test/minigzip.obj"
"../zlib_built/minigzip64.pdb"
"../zlib_built/minigzip64.exe"
"../zlib_built/minigzip64.exe.manifest"
"../zlib_built/libminigzip64.dll.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/minigzip64.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,7 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
CMakeFiles/minigzip64.dir/test/minigzip.obj
..//zlib.h
D:/DevBuild/zlib-1.2.11/test/minigzip.c
zconf.h

View File

@@ -0,0 +1,7 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
CMakeFiles/minigzip64.dir/test/minigzip.obj: ../zlib.h
CMakeFiles/minigzip64.dir/test/minigzip.obj: ../test/minigzip.c
CMakeFiles/minigzip64.dir/test/minigzip.obj: zconf.h

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# compile C with D:/CodeBlocks/MinGW/bin/gcc.exe
C_FLAGS = -g -D_FILE_OFFSET_BITS=64
C_DEFINES = -DNO_FSEEKO -D_LARGEFILE64_SOURCE=1
C_INCLUDES = @CMakeFiles/minigzip64.dir/includes_C.rsp

View File

@@ -0,0 +1 @@
-ID:/DevBuild/zlib-1.2.11/build_win -ID:/DevBuild/zlib-1.2.11

View File

@@ -0,0 +1,3 @@
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\minigzip64.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\minigzip64.dir/objects.a @CMakeFiles\minigzip64.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -g -Wl,--whole-archive CMakeFiles\minigzip64.dir/objects.a -Wl,--no-whole-archive -o ..\zlib_built\minigzip64.exe -Wl,--out-implib,..\zlib_built\libminigzip64.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\minigzip64.dir\linklibs.rsp

View File

@@ -0,0 +1 @@
../zlib_built/libzlib.dll.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@@ -0,0 +1 @@
CMakeFiles/minigzip64.dir/test/minigzip.obj

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 7
CMAKE_PROGRESS_2 = 8

View File

@@ -0,0 +1 @@
41

View File

@@ -0,0 +1,190 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
D:/DevBuild/zlib-1.2.11/adler32.c
zutil.h
D:/DevBuild/zlib-1.2.11/zutil.h
D:/DevBuild/zlib-1.2.11/compress.c
zlib.h
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/crc32.c
stdio.h
-
zutil.h
D:/DevBuild/zlib-1.2.11/zutil.h
crc32.h
D:/DevBuild/zlib-1.2.11/crc32.h
D:/DevBuild/zlib-1.2.11/crc32.h
D:/DevBuild/zlib-1.2.11/deflate.c
deflate.h
D:/DevBuild/zlib-1.2.11/deflate.h
D:/DevBuild/zlib-1.2.11/deflate.h
zutil.h
D:/DevBuild/zlib-1.2.11/zutil.h
D:/DevBuild/zlib-1.2.11/gzclose.c
gzguts.h
D:/DevBuild/zlib-1.2.11/gzguts.h
D:/DevBuild/zlib-1.2.11/gzguts.h
stdio.h
-
zlib.h
D:/DevBuild/zlib-1.2.11/zlib.h
string.h
-
stdlib.h
-
limits.h
-
fcntl.h
-
stddef.h
-
io.h
-
windows.h
-
errno.h
-
D:/DevBuild/zlib-1.2.11/gzlib.c
gzguts.h
D:/DevBuild/zlib-1.2.11/gzguts.h
D:/DevBuild/zlib-1.2.11/gzread.c
gzguts.h
D:/DevBuild/zlib-1.2.11/gzguts.h
D:/DevBuild/zlib-1.2.11/gzwrite.c
gzguts.h
D:/DevBuild/zlib-1.2.11/gzguts.h
stdarg.h
-
D:/DevBuild/zlib-1.2.11/infback.c
zutil.h
D:/DevBuild/zlib-1.2.11/zutil.h
inftrees.h
D:/DevBuild/zlib-1.2.11/inftrees.h
inflate.h
D:/DevBuild/zlib-1.2.11/inflate.h
inffast.h
D:/DevBuild/zlib-1.2.11/inffast.h
inffixed.h
D:/DevBuild/zlib-1.2.11/inffixed.h
D:/DevBuild/zlib-1.2.11/inffast.c
zutil.h
D:/DevBuild/zlib-1.2.11/zutil.h
inftrees.h
D:/DevBuild/zlib-1.2.11/inftrees.h
inflate.h
D:/DevBuild/zlib-1.2.11/inflate.h
inffast.h
D:/DevBuild/zlib-1.2.11/inffast.h
D:/DevBuild/zlib-1.2.11/inffast.h
D:/DevBuild/zlib-1.2.11/inffixed.h
D:/DevBuild/zlib-1.2.11/inflate.c
zutil.h
D:/DevBuild/zlib-1.2.11/zutil.h
inftrees.h
D:/DevBuild/zlib-1.2.11/inftrees.h
inflate.h
D:/DevBuild/zlib-1.2.11/inflate.h
inffast.h
D:/DevBuild/zlib-1.2.11/inffast.h
inffixed.h
D:/DevBuild/zlib-1.2.11/inffixed.h
stdio.h
-
D:/DevBuild/zlib-1.2.11/inflate.h
D:/DevBuild/zlib-1.2.11/inftrees.c
zutil.h
D:/DevBuild/zlib-1.2.11/zutil.h
inftrees.h
D:/DevBuild/zlib-1.2.11/inftrees.h
D:/DevBuild/zlib-1.2.11/inftrees.h
D:/DevBuild/zlib-1.2.11/trees.c
deflate.h
D:/DevBuild/zlib-1.2.11/deflate.h
ctype.h
-
trees.h
D:/DevBuild/zlib-1.2.11/trees.h
stdio.h
-
D:/DevBuild/zlib-1.2.11/trees.h
D:/DevBuild/zlib-1.2.11/uncompr.c
zlib.h
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/zlib.h
zconf.h
D:/DevBuild/zlib-1.2.11/zconf.h
D:/DevBuild/zlib-1.2.11/zutil.c
zutil.h
D:/DevBuild/zlib-1.2.11/zutil.h
gzguts.h
D:/DevBuild/zlib-1.2.11/gzguts.h
stdlib.h
-
D:/DevBuild/zlib-1.2.11/zutil.h
zlib.h
D:/DevBuild/zlib-1.2.11/zlib.h
stddef.h
-
string.h
-
stdlib.h
-
alloc.h
-
malloc.h
-
malloc.h
-
unix.h
-
stdio.h
-
zconf.h
stddef.h
-
windows.h
-
limits.h
-
sys/types.h
-
stdarg.h
-
stddef.h
-
unistd.h
-
unixio.h
-

View File

@@ -0,0 +1,42 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/DevBuild/zlib-1.2.11/adler32.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/adler32.obj"
"D:/DevBuild/zlib-1.2.11/compress.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/compress.obj"
"D:/DevBuild/zlib-1.2.11/crc32.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/crc32.obj"
"D:/DevBuild/zlib-1.2.11/deflate.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/deflate.obj"
"D:/DevBuild/zlib-1.2.11/gzclose.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/gzclose.obj"
"D:/DevBuild/zlib-1.2.11/gzlib.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/gzlib.obj"
"D:/DevBuild/zlib-1.2.11/gzread.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/gzread.obj"
"D:/DevBuild/zlib-1.2.11/gzwrite.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/gzwrite.obj"
"D:/DevBuild/zlib-1.2.11/infback.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/infback.obj"
"D:/DevBuild/zlib-1.2.11/inffast.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/inffast.obj"
"D:/DevBuild/zlib-1.2.11/inflate.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/inflate.obj"
"D:/DevBuild/zlib-1.2.11/inftrees.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/inftrees.obj"
"D:/DevBuild/zlib-1.2.11/trees.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/trees.obj"
"D:/DevBuild/zlib-1.2.11/uncompr.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/uncompr.obj"
"D:/DevBuild/zlib-1.2.11/zutil.c" "D:/DevBuild/zlib-1.2.11/build_win/CMakeFiles/zlib.dir/zutil.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"NO_FSEEKO"
"_LARGEFILE64_SOURCE=1"
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"."
"../"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,513 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = "C:\Program Files\CMake\bin\cmake.exe"
# The command to remove a file.
RM = "C:\Program Files\CMake\bin\cmake.exe" -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = D:\DevBuild\zlib-1.2.11
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = D:\DevBuild\zlib-1.2.11\build_win
# Include any dependencies generated for this target.
include CMakeFiles/zlib.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/zlib.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/zlib.dir/flags.make
zlib1rc.obj:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating zlib1rc.obj"
D:\CodeBlocks\MinGW\bin\windres.exe -D GCC_WINDRES -I D:/DevBuild/zlib-1.2.11 -I D:/DevBuild/zlib-1.2.11/build_win -o D:/DevBuild/zlib-1.2.11/build_win/zlib1rc.obj -i D:/DevBuild/zlib-1.2.11/win32/zlib1.rc
CMakeFiles/zlib.dir/adler32.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/adler32.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/adler32.obj: ../adler32.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/zlib.dir/adler32.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\adler32.obj -c D:\DevBuild\zlib-1.2.11\adler32.c
CMakeFiles/zlib.dir/adler32.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/adler32.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\adler32.c > CMakeFiles\zlib.dir\adler32.i
CMakeFiles/zlib.dir/adler32.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/adler32.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\adler32.c -o CMakeFiles\zlib.dir\adler32.s
CMakeFiles/zlib.dir/adler32.obj.requires:
.PHONY : CMakeFiles/zlib.dir/adler32.obj.requires
CMakeFiles/zlib.dir/adler32.obj.provides: CMakeFiles/zlib.dir/adler32.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/adler32.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/adler32.obj.provides
CMakeFiles/zlib.dir/adler32.obj.provides.build: CMakeFiles/zlib.dir/adler32.obj
CMakeFiles/zlib.dir/compress.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/compress.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/compress.obj: ../compress.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/zlib.dir/compress.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\compress.obj -c D:\DevBuild\zlib-1.2.11\compress.c
CMakeFiles/zlib.dir/compress.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/compress.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\compress.c > CMakeFiles\zlib.dir\compress.i
CMakeFiles/zlib.dir/compress.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/compress.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\compress.c -o CMakeFiles\zlib.dir\compress.s
CMakeFiles/zlib.dir/compress.obj.requires:
.PHONY : CMakeFiles/zlib.dir/compress.obj.requires
CMakeFiles/zlib.dir/compress.obj.provides: CMakeFiles/zlib.dir/compress.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/compress.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/compress.obj.provides
CMakeFiles/zlib.dir/compress.obj.provides.build: CMakeFiles/zlib.dir/compress.obj
CMakeFiles/zlib.dir/crc32.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/crc32.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/crc32.obj: ../crc32.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/zlib.dir/crc32.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\crc32.obj -c D:\DevBuild\zlib-1.2.11\crc32.c
CMakeFiles/zlib.dir/crc32.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/crc32.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\crc32.c > CMakeFiles\zlib.dir\crc32.i
CMakeFiles/zlib.dir/crc32.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/crc32.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\crc32.c -o CMakeFiles\zlib.dir\crc32.s
CMakeFiles/zlib.dir/crc32.obj.requires:
.PHONY : CMakeFiles/zlib.dir/crc32.obj.requires
CMakeFiles/zlib.dir/crc32.obj.provides: CMakeFiles/zlib.dir/crc32.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/crc32.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/crc32.obj.provides
CMakeFiles/zlib.dir/crc32.obj.provides.build: CMakeFiles/zlib.dir/crc32.obj
CMakeFiles/zlib.dir/deflate.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/deflate.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/deflate.obj: ../deflate.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/zlib.dir/deflate.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\deflate.obj -c D:\DevBuild\zlib-1.2.11\deflate.c
CMakeFiles/zlib.dir/deflate.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/deflate.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\deflate.c > CMakeFiles\zlib.dir\deflate.i
CMakeFiles/zlib.dir/deflate.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/deflate.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\deflate.c -o CMakeFiles\zlib.dir\deflate.s
CMakeFiles/zlib.dir/deflate.obj.requires:
.PHONY : CMakeFiles/zlib.dir/deflate.obj.requires
CMakeFiles/zlib.dir/deflate.obj.provides: CMakeFiles/zlib.dir/deflate.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/deflate.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/deflate.obj.provides
CMakeFiles/zlib.dir/deflate.obj.provides.build: CMakeFiles/zlib.dir/deflate.obj
CMakeFiles/zlib.dir/gzclose.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/gzclose.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/gzclose.obj: ../gzclose.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/zlib.dir/gzclose.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\gzclose.obj -c D:\DevBuild\zlib-1.2.11\gzclose.c
CMakeFiles/zlib.dir/gzclose.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/gzclose.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\gzclose.c > CMakeFiles\zlib.dir\gzclose.i
CMakeFiles/zlib.dir/gzclose.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/gzclose.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\gzclose.c -o CMakeFiles\zlib.dir\gzclose.s
CMakeFiles/zlib.dir/gzclose.obj.requires:
.PHONY : CMakeFiles/zlib.dir/gzclose.obj.requires
CMakeFiles/zlib.dir/gzclose.obj.provides: CMakeFiles/zlib.dir/gzclose.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/gzclose.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/gzclose.obj.provides
CMakeFiles/zlib.dir/gzclose.obj.provides.build: CMakeFiles/zlib.dir/gzclose.obj
CMakeFiles/zlib.dir/gzlib.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/gzlib.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/gzlib.obj: ../gzlib.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/zlib.dir/gzlib.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\gzlib.obj -c D:\DevBuild\zlib-1.2.11\gzlib.c
CMakeFiles/zlib.dir/gzlib.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/gzlib.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\gzlib.c > CMakeFiles\zlib.dir\gzlib.i
CMakeFiles/zlib.dir/gzlib.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/gzlib.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\gzlib.c -o CMakeFiles\zlib.dir\gzlib.s
CMakeFiles/zlib.dir/gzlib.obj.requires:
.PHONY : CMakeFiles/zlib.dir/gzlib.obj.requires
CMakeFiles/zlib.dir/gzlib.obj.provides: CMakeFiles/zlib.dir/gzlib.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/gzlib.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/gzlib.obj.provides
CMakeFiles/zlib.dir/gzlib.obj.provides.build: CMakeFiles/zlib.dir/gzlib.obj
CMakeFiles/zlib.dir/gzread.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/gzread.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/gzread.obj: ../gzread.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/zlib.dir/gzread.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\gzread.obj -c D:\DevBuild\zlib-1.2.11\gzread.c
CMakeFiles/zlib.dir/gzread.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/gzread.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\gzread.c > CMakeFiles\zlib.dir\gzread.i
CMakeFiles/zlib.dir/gzread.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/gzread.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\gzread.c -o CMakeFiles\zlib.dir\gzread.s
CMakeFiles/zlib.dir/gzread.obj.requires:
.PHONY : CMakeFiles/zlib.dir/gzread.obj.requires
CMakeFiles/zlib.dir/gzread.obj.provides: CMakeFiles/zlib.dir/gzread.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/gzread.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/gzread.obj.provides
CMakeFiles/zlib.dir/gzread.obj.provides.build: CMakeFiles/zlib.dir/gzread.obj
CMakeFiles/zlib.dir/gzwrite.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/gzwrite.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/gzwrite.obj: ../gzwrite.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/zlib.dir/gzwrite.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\gzwrite.obj -c D:\DevBuild\zlib-1.2.11\gzwrite.c
CMakeFiles/zlib.dir/gzwrite.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/gzwrite.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\gzwrite.c > CMakeFiles\zlib.dir\gzwrite.i
CMakeFiles/zlib.dir/gzwrite.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/gzwrite.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\gzwrite.c -o CMakeFiles\zlib.dir\gzwrite.s
CMakeFiles/zlib.dir/gzwrite.obj.requires:
.PHONY : CMakeFiles/zlib.dir/gzwrite.obj.requires
CMakeFiles/zlib.dir/gzwrite.obj.provides: CMakeFiles/zlib.dir/gzwrite.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/gzwrite.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/gzwrite.obj.provides
CMakeFiles/zlib.dir/gzwrite.obj.provides.build: CMakeFiles/zlib.dir/gzwrite.obj
CMakeFiles/zlib.dir/inflate.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/inflate.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/inflate.obj: ../inflate.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/zlib.dir/inflate.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\inflate.obj -c D:\DevBuild\zlib-1.2.11\inflate.c
CMakeFiles/zlib.dir/inflate.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/inflate.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\inflate.c > CMakeFiles\zlib.dir\inflate.i
CMakeFiles/zlib.dir/inflate.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/inflate.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\inflate.c -o CMakeFiles\zlib.dir\inflate.s
CMakeFiles/zlib.dir/inflate.obj.requires:
.PHONY : CMakeFiles/zlib.dir/inflate.obj.requires
CMakeFiles/zlib.dir/inflate.obj.provides: CMakeFiles/zlib.dir/inflate.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/inflate.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/inflate.obj.provides
CMakeFiles/zlib.dir/inflate.obj.provides.build: CMakeFiles/zlib.dir/inflate.obj
CMakeFiles/zlib.dir/infback.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/infback.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/infback.obj: ../infback.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/zlib.dir/infback.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\infback.obj -c D:\DevBuild\zlib-1.2.11\infback.c
CMakeFiles/zlib.dir/infback.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/infback.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\infback.c > CMakeFiles\zlib.dir\infback.i
CMakeFiles/zlib.dir/infback.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/infback.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\infback.c -o CMakeFiles\zlib.dir\infback.s
CMakeFiles/zlib.dir/infback.obj.requires:
.PHONY : CMakeFiles/zlib.dir/infback.obj.requires
CMakeFiles/zlib.dir/infback.obj.provides: CMakeFiles/zlib.dir/infback.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/infback.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/infback.obj.provides
CMakeFiles/zlib.dir/infback.obj.provides.build: CMakeFiles/zlib.dir/infback.obj
CMakeFiles/zlib.dir/inftrees.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/inftrees.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/inftrees.obj: ../inftrees.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/zlib.dir/inftrees.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\inftrees.obj -c D:\DevBuild\zlib-1.2.11\inftrees.c
CMakeFiles/zlib.dir/inftrees.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/inftrees.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\inftrees.c > CMakeFiles\zlib.dir\inftrees.i
CMakeFiles/zlib.dir/inftrees.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/inftrees.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\inftrees.c -o CMakeFiles\zlib.dir\inftrees.s
CMakeFiles/zlib.dir/inftrees.obj.requires:
.PHONY : CMakeFiles/zlib.dir/inftrees.obj.requires
CMakeFiles/zlib.dir/inftrees.obj.provides: CMakeFiles/zlib.dir/inftrees.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/inftrees.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/inftrees.obj.provides
CMakeFiles/zlib.dir/inftrees.obj.provides.build: CMakeFiles/zlib.dir/inftrees.obj
CMakeFiles/zlib.dir/inffast.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/inffast.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/inffast.obj: ../inffast.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/zlib.dir/inffast.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\inffast.obj -c D:\DevBuild\zlib-1.2.11\inffast.c
CMakeFiles/zlib.dir/inffast.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/inffast.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\inffast.c > CMakeFiles\zlib.dir\inffast.i
CMakeFiles/zlib.dir/inffast.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/inffast.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\inffast.c -o CMakeFiles\zlib.dir\inffast.s
CMakeFiles/zlib.dir/inffast.obj.requires:
.PHONY : CMakeFiles/zlib.dir/inffast.obj.requires
CMakeFiles/zlib.dir/inffast.obj.provides: CMakeFiles/zlib.dir/inffast.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/inffast.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/inffast.obj.provides
CMakeFiles/zlib.dir/inffast.obj.provides.build: CMakeFiles/zlib.dir/inffast.obj
CMakeFiles/zlib.dir/trees.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/trees.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/trees.obj: ../trees.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/zlib.dir/trees.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\trees.obj -c D:\DevBuild\zlib-1.2.11\trees.c
CMakeFiles/zlib.dir/trees.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/trees.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\trees.c > CMakeFiles\zlib.dir\trees.i
CMakeFiles/zlib.dir/trees.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/trees.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\trees.c -o CMakeFiles\zlib.dir\trees.s
CMakeFiles/zlib.dir/trees.obj.requires:
.PHONY : CMakeFiles/zlib.dir/trees.obj.requires
CMakeFiles/zlib.dir/trees.obj.provides: CMakeFiles/zlib.dir/trees.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/trees.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/trees.obj.provides
CMakeFiles/zlib.dir/trees.obj.provides.build: CMakeFiles/zlib.dir/trees.obj
CMakeFiles/zlib.dir/uncompr.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/uncompr.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/uncompr.obj: ../uncompr.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/zlib.dir/uncompr.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\uncompr.obj -c D:\DevBuild\zlib-1.2.11\uncompr.c
CMakeFiles/zlib.dir/uncompr.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/uncompr.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\uncompr.c > CMakeFiles\zlib.dir\uncompr.i
CMakeFiles/zlib.dir/uncompr.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/uncompr.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\uncompr.c -o CMakeFiles\zlib.dir\uncompr.s
CMakeFiles/zlib.dir/uncompr.obj.requires:
.PHONY : CMakeFiles/zlib.dir/uncompr.obj.requires
CMakeFiles/zlib.dir/uncompr.obj.provides: CMakeFiles/zlib.dir/uncompr.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/uncompr.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/uncompr.obj.provides
CMakeFiles/zlib.dir/uncompr.obj.provides.build: CMakeFiles/zlib.dir/uncompr.obj
CMakeFiles/zlib.dir/zutil.obj: CMakeFiles/zlib.dir/flags.make
CMakeFiles/zlib.dir/zutil.obj: CMakeFiles/zlib.dir/includes_C.rsp
CMakeFiles/zlib.dir/zutil.obj: ../zutil.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/zlib.dir/zutil.obj"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\zlib.dir\zutil.obj -c D:\DevBuild\zlib-1.2.11\zutil.c
CMakeFiles/zlib.dir/zutil.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/zlib.dir/zutil.i"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\DevBuild\zlib-1.2.11\zutil.c > CMakeFiles\zlib.dir\zutil.i
CMakeFiles/zlib.dir/zutil.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/zlib.dir/zutil.s"
D:\CodeBlocks\MinGW\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\DevBuild\zlib-1.2.11\zutil.c -o CMakeFiles\zlib.dir\zutil.s
CMakeFiles/zlib.dir/zutil.obj.requires:
.PHONY : CMakeFiles/zlib.dir/zutil.obj.requires
CMakeFiles/zlib.dir/zutil.obj.provides: CMakeFiles/zlib.dir/zutil.obj.requires
$(MAKE) -f CMakeFiles\zlib.dir\build.make CMakeFiles/zlib.dir/zutil.obj.provides.build
.PHONY : CMakeFiles/zlib.dir/zutil.obj.provides
CMakeFiles/zlib.dir/zutil.obj.provides.build: CMakeFiles/zlib.dir/zutil.obj
# Object files for target zlib
zlib_OBJECTS = \
"CMakeFiles/zlib.dir/adler32.obj" \
"CMakeFiles/zlib.dir/compress.obj" \
"CMakeFiles/zlib.dir/crc32.obj" \
"CMakeFiles/zlib.dir/deflate.obj" \
"CMakeFiles/zlib.dir/gzclose.obj" \
"CMakeFiles/zlib.dir/gzlib.obj" \
"CMakeFiles/zlib.dir/gzread.obj" \
"CMakeFiles/zlib.dir/gzwrite.obj" \
"CMakeFiles/zlib.dir/inflate.obj" \
"CMakeFiles/zlib.dir/infback.obj" \
"CMakeFiles/zlib.dir/inftrees.obj" \
"CMakeFiles/zlib.dir/inffast.obj" \
"CMakeFiles/zlib.dir/trees.obj" \
"CMakeFiles/zlib.dir/uncompr.obj" \
"CMakeFiles/zlib.dir/zutil.obj"
# External object files for target zlib
zlib_EXTERNAL_OBJECTS = \
"D:/DevBuild/zlib-1.2.11/build_win/zlib1rc.obj"
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/adler32.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/compress.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/crc32.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/deflate.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/gzclose.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/gzlib.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/gzread.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/gzwrite.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/inflate.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/infback.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/inftrees.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/inffast.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/trees.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/uncompr.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/zutil.obj
../zlib_built/libzlib.dll: zlib1rc.obj
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/build.make
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/linklibs.rsp
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/objects1.rsp
../zlib_built/libzlib.dll: CMakeFiles/zlib.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Linking C shared library ..\zlib_built\libzlib.dll"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\zlib.dir\link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/zlib.dir/build: ../zlib_built/libzlib.dll
.PHONY : CMakeFiles/zlib.dir/build
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/adler32.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/compress.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/crc32.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/deflate.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/gzclose.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/gzlib.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/gzread.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/gzwrite.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/inflate.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/infback.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/inftrees.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/inffast.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/trees.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/uncompr.obj.requires
CMakeFiles/zlib.dir/requires: CMakeFiles/zlib.dir/zutil.obj.requires
.PHONY : CMakeFiles/zlib.dir/requires
CMakeFiles/zlib.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles\zlib.dir\cmake_clean.cmake
.PHONY : CMakeFiles/zlib.dir/clean
CMakeFiles/zlib.dir/depend: zlib1rc.obj
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" D:\DevBuild\zlib-1.2.11 D:\DevBuild\zlib-1.2.11 D:\DevBuild\zlib-1.2.11\build_win D:\DevBuild\zlib-1.2.11\build_win D:\DevBuild\zlib-1.2.11\build_win\CMakeFiles\zlib.dir\DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/zlib.dir/depend

View File

@@ -0,0 +1,27 @@
file(REMOVE_RECURSE
"zlib1rc.obj"
"CMakeFiles/zlib.dir/adler32.obj"
"CMakeFiles/zlib.dir/compress.obj"
"CMakeFiles/zlib.dir/crc32.obj"
"CMakeFiles/zlib.dir/deflate.obj"
"CMakeFiles/zlib.dir/gzclose.obj"
"CMakeFiles/zlib.dir/gzlib.obj"
"CMakeFiles/zlib.dir/gzread.obj"
"CMakeFiles/zlib.dir/gzwrite.obj"
"CMakeFiles/zlib.dir/inflate.obj"
"CMakeFiles/zlib.dir/infback.obj"
"CMakeFiles/zlib.dir/inftrees.obj"
"CMakeFiles/zlib.dir/inffast.obj"
"CMakeFiles/zlib.dir/trees.obj"
"CMakeFiles/zlib.dir/uncompr.obj"
"CMakeFiles/zlib.dir/zutil.obj"
"../zlib_built/libzlib.pdb"
"../zlib_built/libzlib.dll"
"../zlib_built/libzlib.dll.a"
"../zlib_built/libzlib.dll.manifest"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/zlib.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,93 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
CMakeFiles/zlib.dir/adler32.obj
D:/DevBuild/zlib-1.2.11/adler32.c
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/zutil.h
zconf.h
CMakeFiles/zlib.dir/compress.obj
D:/DevBuild/zlib-1.2.11/compress.c
D:/DevBuild/zlib-1.2.11/zlib.h
zconf.h
CMakeFiles/zlib.dir/crc32.obj
D:/DevBuild/zlib-1.2.11/crc32.c
D:/DevBuild/zlib-1.2.11/crc32.h
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/zutil.h
zconf.h
CMakeFiles/zlib.dir/deflate.obj
D:/DevBuild/zlib-1.2.11/deflate.c
D:/DevBuild/zlib-1.2.11/deflate.h
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/zutil.h
zconf.h
CMakeFiles/zlib.dir/gzclose.obj
D:/DevBuild/zlib-1.2.11/gzclose.c
D:/DevBuild/zlib-1.2.11/gzguts.h
D:/DevBuild/zlib-1.2.11/zlib.h
zconf.h
CMakeFiles/zlib.dir/gzlib.obj
D:/DevBuild/zlib-1.2.11/gzguts.h
D:/DevBuild/zlib-1.2.11/gzlib.c
D:/DevBuild/zlib-1.2.11/zlib.h
zconf.h
CMakeFiles/zlib.dir/gzread.obj
D:/DevBuild/zlib-1.2.11/gzguts.h
D:/DevBuild/zlib-1.2.11/gzread.c
D:/DevBuild/zlib-1.2.11/zlib.h
zconf.h
CMakeFiles/zlib.dir/gzwrite.obj
D:/DevBuild/zlib-1.2.11/gzguts.h
D:/DevBuild/zlib-1.2.11/gzwrite.c
D:/DevBuild/zlib-1.2.11/zlib.h
zconf.h
CMakeFiles/zlib.dir/infback.obj
D:/DevBuild/zlib-1.2.11/infback.c
D:/DevBuild/zlib-1.2.11/inffast.h
D:/DevBuild/zlib-1.2.11/inffixed.h
D:/DevBuild/zlib-1.2.11/inflate.h
D:/DevBuild/zlib-1.2.11/inftrees.h
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/zutil.h
zconf.h
CMakeFiles/zlib.dir/inffast.obj
D:/DevBuild/zlib-1.2.11/inffast.c
D:/DevBuild/zlib-1.2.11/inffast.h
D:/DevBuild/zlib-1.2.11/inflate.h
D:/DevBuild/zlib-1.2.11/inftrees.h
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/zutil.h
zconf.h
CMakeFiles/zlib.dir/inflate.obj
D:/DevBuild/zlib-1.2.11/inffast.h
D:/DevBuild/zlib-1.2.11/inffixed.h
D:/DevBuild/zlib-1.2.11/inflate.c
D:/DevBuild/zlib-1.2.11/inflate.h
D:/DevBuild/zlib-1.2.11/inftrees.h
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/zutil.h
zconf.h
CMakeFiles/zlib.dir/inftrees.obj
D:/DevBuild/zlib-1.2.11/inftrees.c
D:/DevBuild/zlib-1.2.11/inftrees.h
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/zutil.h
zconf.h
CMakeFiles/zlib.dir/trees.obj
D:/DevBuild/zlib-1.2.11/deflate.h
D:/DevBuild/zlib-1.2.11/trees.c
D:/DevBuild/zlib-1.2.11/trees.h
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/zutil.h
zconf.h
CMakeFiles/zlib.dir/uncompr.obj
D:/DevBuild/zlib-1.2.11/uncompr.c
D:/DevBuild/zlib-1.2.11/zlib.h
zconf.h
CMakeFiles/zlib.dir/zutil.obj
D:/DevBuild/zlib-1.2.11/gzguts.h
D:/DevBuild/zlib-1.2.11/zlib.h
D:/DevBuild/zlib-1.2.11/zutil.c
D:/DevBuild/zlib-1.2.11/zutil.h
zconf.h

View File

@@ -0,0 +1,93 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
CMakeFiles/zlib.dir/adler32.obj: ../adler32.c
CMakeFiles/zlib.dir/adler32.obj: ../zlib.h
CMakeFiles/zlib.dir/adler32.obj: ../zutil.h
CMakeFiles/zlib.dir/adler32.obj: zconf.h
CMakeFiles/zlib.dir/compress.obj: ../compress.c
CMakeFiles/zlib.dir/compress.obj: ../zlib.h
CMakeFiles/zlib.dir/compress.obj: zconf.h
CMakeFiles/zlib.dir/crc32.obj: ../crc32.c
CMakeFiles/zlib.dir/crc32.obj: ../crc32.h
CMakeFiles/zlib.dir/crc32.obj: ../zlib.h
CMakeFiles/zlib.dir/crc32.obj: ../zutil.h
CMakeFiles/zlib.dir/crc32.obj: zconf.h
CMakeFiles/zlib.dir/deflate.obj: ../deflate.c
CMakeFiles/zlib.dir/deflate.obj: ../deflate.h
CMakeFiles/zlib.dir/deflate.obj: ../zlib.h
CMakeFiles/zlib.dir/deflate.obj: ../zutil.h
CMakeFiles/zlib.dir/deflate.obj: zconf.h
CMakeFiles/zlib.dir/gzclose.obj: ../gzclose.c
CMakeFiles/zlib.dir/gzclose.obj: ../gzguts.h
CMakeFiles/zlib.dir/gzclose.obj: ../zlib.h
CMakeFiles/zlib.dir/gzclose.obj: zconf.h
CMakeFiles/zlib.dir/gzlib.obj: ../gzguts.h
CMakeFiles/zlib.dir/gzlib.obj: ../gzlib.c
CMakeFiles/zlib.dir/gzlib.obj: ../zlib.h
CMakeFiles/zlib.dir/gzlib.obj: zconf.h
CMakeFiles/zlib.dir/gzread.obj: ../gzguts.h
CMakeFiles/zlib.dir/gzread.obj: ../gzread.c
CMakeFiles/zlib.dir/gzread.obj: ../zlib.h
CMakeFiles/zlib.dir/gzread.obj: zconf.h
CMakeFiles/zlib.dir/gzwrite.obj: ../gzguts.h
CMakeFiles/zlib.dir/gzwrite.obj: ../gzwrite.c
CMakeFiles/zlib.dir/gzwrite.obj: ../zlib.h
CMakeFiles/zlib.dir/gzwrite.obj: zconf.h
CMakeFiles/zlib.dir/infback.obj: ../infback.c
CMakeFiles/zlib.dir/infback.obj: ../inffast.h
CMakeFiles/zlib.dir/infback.obj: ../inffixed.h
CMakeFiles/zlib.dir/infback.obj: ../inflate.h
CMakeFiles/zlib.dir/infback.obj: ../inftrees.h
CMakeFiles/zlib.dir/infback.obj: ../zlib.h
CMakeFiles/zlib.dir/infback.obj: ../zutil.h
CMakeFiles/zlib.dir/infback.obj: zconf.h
CMakeFiles/zlib.dir/inffast.obj: ../inffast.c
CMakeFiles/zlib.dir/inffast.obj: ../inffast.h
CMakeFiles/zlib.dir/inffast.obj: ../inflate.h
CMakeFiles/zlib.dir/inffast.obj: ../inftrees.h
CMakeFiles/zlib.dir/inffast.obj: ../zlib.h
CMakeFiles/zlib.dir/inffast.obj: ../zutil.h
CMakeFiles/zlib.dir/inffast.obj: zconf.h
CMakeFiles/zlib.dir/inflate.obj: ../inffast.h
CMakeFiles/zlib.dir/inflate.obj: ../inffixed.h
CMakeFiles/zlib.dir/inflate.obj: ../inflate.c
CMakeFiles/zlib.dir/inflate.obj: ../inflate.h
CMakeFiles/zlib.dir/inflate.obj: ../inftrees.h
CMakeFiles/zlib.dir/inflate.obj: ../zlib.h
CMakeFiles/zlib.dir/inflate.obj: ../zutil.h
CMakeFiles/zlib.dir/inflate.obj: zconf.h
CMakeFiles/zlib.dir/inftrees.obj: ../inftrees.c
CMakeFiles/zlib.dir/inftrees.obj: ../inftrees.h
CMakeFiles/zlib.dir/inftrees.obj: ../zlib.h
CMakeFiles/zlib.dir/inftrees.obj: ../zutil.h
CMakeFiles/zlib.dir/inftrees.obj: zconf.h
CMakeFiles/zlib.dir/trees.obj: ../deflate.h
CMakeFiles/zlib.dir/trees.obj: ../trees.c
CMakeFiles/zlib.dir/trees.obj: ../trees.h
CMakeFiles/zlib.dir/trees.obj: ../zlib.h
CMakeFiles/zlib.dir/trees.obj: ../zutil.h
CMakeFiles/zlib.dir/trees.obj: zconf.h
CMakeFiles/zlib.dir/uncompr.obj: ../uncompr.c
CMakeFiles/zlib.dir/uncompr.obj: ../zlib.h
CMakeFiles/zlib.dir/uncompr.obj: zconf.h
CMakeFiles/zlib.dir/zutil.obj: ../gzguts.h
CMakeFiles/zlib.dir/zutil.obj: ../zlib.h
CMakeFiles/zlib.dir/zutil.obj: ../zutil.c
CMakeFiles/zlib.dir/zutil.obj: ../zutil.h
CMakeFiles/zlib.dir/zutil.obj: zconf.h

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.10
# compile C with D:/CodeBlocks/MinGW/bin/gcc.exe
C_FLAGS = -g
C_DEFINES = -DNO_FSEEKO -DZLIB_DLL -D_LARGEFILE64_SOURCE=1
C_INCLUDES = @CMakeFiles/zlib.dir/includes_C.rsp

View File

@@ -0,0 +1 @@
-ID:/DevBuild/zlib-1.2.11/build_win -ID:/DevBuild/zlib-1.2.11

View File

@@ -0,0 +1,3 @@
"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\zlib.dir/objects.a
D:\CodeBlocks\MinGW\bin\ar.exe cr CMakeFiles\zlib.dir/objects.a @CMakeFiles\zlib.dir\objects1.rsp
D:\CodeBlocks\MinGW\bin\gcc.exe -g -shared -o ..\zlib_built\libzlib.dll -Wl,--out-implib,..\zlib_built\libzlib.dll.a -Wl,--major-image-version,1,--minor-image-version,2 -Wl,--whole-archive CMakeFiles\zlib.dir/objects.a -Wl,--no-whole-archive @CMakeFiles\zlib.dir\linklibs.rsp

View File

@@ -0,0 +1 @@
-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@@ -0,0 +1 @@
CMakeFiles/zlib.dir/adler32.obj CMakeFiles/zlib.dir/compress.obj CMakeFiles/zlib.dir/crc32.obj CMakeFiles/zlib.dir/deflate.obj CMakeFiles/zlib.dir/gzclose.obj CMakeFiles/zlib.dir/gzlib.obj CMakeFiles/zlib.dir/gzread.obj CMakeFiles/zlib.dir/gzwrite.obj CMakeFiles/zlib.dir/inflate.obj CMakeFiles/zlib.dir/infback.obj CMakeFiles/zlib.dir/inftrees.obj CMakeFiles/zlib.dir/inffast.obj CMakeFiles/zlib.dir/trees.obj CMakeFiles/zlib.dir/uncompr.obj CMakeFiles/zlib.dir/zutil.obj zlib1rc.obj

View File

@@ -0,0 +1,18 @@
CMAKE_PROGRESS_1 = 9
CMAKE_PROGRESS_2 = 10
CMAKE_PROGRESS_3 = 11
CMAKE_PROGRESS_4 = 12
CMAKE_PROGRESS_5 = 13
CMAKE_PROGRESS_6 = 14
CMAKE_PROGRESS_7 = 15
CMAKE_PROGRESS_8 = 16
CMAKE_PROGRESS_9 = 17
CMAKE_PROGRESS_10 = 18
CMAKE_PROGRESS_11 = 19
CMAKE_PROGRESS_12 = 20
CMAKE_PROGRESS_13 = 21
CMAKE_PROGRESS_14 = 22
CMAKE_PROGRESS_15 = 23
CMAKE_PROGRESS_16 = 24
CMAKE_PROGRESS_17 = 25

Some files were not shown because too many files have changed in this diff Show More