2001-11-30 04:59:53 +03:00
|
|
|
# Microsoft specific config file
|
2001-12-20 23:44:51 +03:00
|
|
|
# NOTE: all entries in here MUST be CACHE values, regular SET will NOT WORK!
|
2001-11-30 04:59:53 +03:00
|
|
|
|
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
# Suffixes
|
|
|
|
|
2002-03-01 17:00:31 +03:00
|
|
|
SET (CMAKE_SYSTEM "Win32" CACHE INTERNAL
|
|
|
|
"What system is this. Result of uname.")
|
|
|
|
|
|
|
|
SET (CMAKE_BUILD_TOOL nmake CACHE INTERNAL
|
|
|
|
"What is the target build tool cmake is generating for.")
|
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
SET (CMAKE_EXECUTABLE_SUFFIX ".exe" CACHE STRING
|
|
|
|
"Executable suffix.")
|
|
|
|
|
|
|
|
SET (CMAKE_MODULE_SUFFIX ".dll" CACHE STRING
|
|
|
|
"Module library suffix.")
|
|
|
|
|
|
|
|
SET (CMAKE_OBJECT_FILE_SUFFIX ".obj" CACHE STRING
|
|
|
|
"Object file suffix.")
|
|
|
|
|
|
|
|
SET (CMAKE_SHLIB_SUFFIX ".dll" CACHE STRING
|
|
|
|
"Shared library suffix.")
|
|
|
|
|
|
|
|
SET (CMAKE_STATICLIB_SUFFIX ".lib" CACHE STRING
|
|
|
|
"Static library suffix.")
|
|
|
|
|
|
|
|
# ANSI
|
|
|
|
|
2001-11-30 21:10:41 +03:00
|
|
|
SET (CMAKE_ANSI_CFLAGS "" CACHE INTERNAL
|
|
|
|
"What flags are required by the c++ compiler to make it ansi.")
|
|
|
|
|
2002-01-07 22:07:32 +03:00
|
|
|
# We will hardcode them for now. Make sure to fix that in the future
|
|
|
|
SET (CMAKE_SIZEOF_INT 4 CACHE INTERNAL "Size of int data type")
|
|
|
|
SET (CMAKE_SIZEOF_LONG 4 CACHE INTERNAL "Size of long data type")
|
|
|
|
SET (CMAKE_SIZEOF_VOID_P 4 CACHE INTERNAL "Size of void* data type")
|
|
|
|
SET (CMAKE_SIZEOF_CHAR 1 CACHE INTERNAL "Size of char data type")
|
|
|
|
SET (CMAKE_SIZEOF_SHORT 2 CACHE INTERNAL "Size of short data type")
|
|
|
|
SET (CMAKE_SIZEOF_FLOAT 4 CACHE INTERNAL "Size of float data type")
|
|
|
|
SET (CMAKE_SIZEOF_DOUBLE 8 CACHE INTERNAL "Size of double data type")
|
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
# Build type
|
|
|
|
|
|
|
|
SET (CMAKE_BUILD_TYPE Debug CACHE STRING
|
|
|
|
"Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel.")
|
|
|
|
|
|
|
|
# C++
|
|
|
|
|
|
|
|
SET (CMAKE_CXX_COMPILER cl CACHE FILEPATH
|
|
|
|
"Name of C++ compiler used.")
|
|
|
|
|
2002-04-22 23:16:54 +04:00
|
|
|
SET (CMAKE_CXX_FLAGS "/nologo /W3 /Zm1000 /GX /GR" CACHE STRING
|
2001-12-01 00:04:59 +03:00
|
|
|
"Flags used by the compiler during all build types, /GX /GR are for exceptions and rtti in VC++, /Zm1000 increases the compiler's memory allocation to support ANSI C++/stdlib.")
|
|
|
|
|
|
|
|
SET (CMAKE_CXX_FLAGS_DEBUG "/MDd /Zi /Od /GZ" CACHE STRING
|
|
|
|
"Flags used by the compiler during debug builds.")
|
|
|
|
|
|
|
|
SET (CMAKE_CXX_FLAGS_MINSIZEREL "/MD /O1" CACHE STRING
|
|
|
|
"Flags used by the compiler during release minsize builds.")
|
|
|
|
|
|
|
|
SET (CMAKE_CXX_FLAGS_RELEASE "/MD /O2" CACHE STRING
|
|
|
|
"Flags used by the compiler during release builds (/MD /Ob1 /Oi /Ot /Oy /Gs will produce slightly less optimized but smaller files).")
|
|
|
|
|
|
|
|
SET (CMAKE_CXX_FLAGS_RELWITHDEBINFO "/MD /Zi /O2" CACHE STRING
|
|
|
|
"Flags used by the compiler during Release with Debug Info builds.")
|
|
|
|
|
|
|
|
# C
|
|
|
|
|
2001-11-30 04:59:53 +03:00
|
|
|
SET (CMAKE_C_COMPILER cl CACHE FILEPATH
|
2001-11-14 18:21:59 +03:00
|
|
|
"Name of C compiler used.")
|
2001-11-30 04:59:53 +03:00
|
|
|
|
2002-04-22 23:16:54 +04:00
|
|
|
SET (CMAKE_C_FLAGS "/nologo /W3 /Zm1000" CACHE STRING
|
2001-11-14 18:21:59 +03:00
|
|
|
"Flags for C compiler.")
|
2001-11-30 04:59:53 +03:00
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
SET (CMAKE_C_LIBPATH_FLAG "-LIBPATH:" CACHE STRING
|
2001-12-05 23:00:21 +03:00
|
|
|
"Flags used to specify a link path. No space will be appended (use single quotes around value to insert trailing space).")
|
2001-12-01 00:04:59 +03:00
|
|
|
|
|
|
|
SET (CMAKE_C_LINK_EXECUTABLE_FLAG "/link" CACHE STRING
|
|
|
|
"Flags used to create an executable.")
|
2001-11-30 04:59:53 +03:00
|
|
|
|
|
|
|
SET (CMAKE_C_OUTPUT_EXECUTABLE_FILE_FLAG "/Fe" CACHE STRING
|
2001-12-05 23:00:21 +03:00
|
|
|
"Flags used to specify executable filename. No space will be appended (use single quotes around value to insert trailing space).")
|
2001-11-30 04:59:53 +03:00
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
SET (CMAKE_C_OUTPUT_OBJECT_FILE_FLAG "/Fo" CACHE STRING
|
2001-12-05 23:00:21 +03:00
|
|
|
"Flags used to specify output filename. No space will be appended (use single quotes around value to insert trailing space).")
|
2001-11-30 04:59:53 +03:00
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
# Library manager
|
|
|
|
|
|
|
|
SET (CMAKE_LIBRARY_MANAGER lib CACHE FILEPATH
|
|
|
|
"Name of the library manager used (static lib).")
|
|
|
|
|
|
|
|
SET (CMAKE_LIBRARY_MANAGER_FLAGS "/nologo" CACHE STRING
|
|
|
|
"Flags used by the library manager.")
|
|
|
|
|
|
|
|
SET (CMAKE_LIBRARY_MANAGER_OUTPUT_FILE_FLAG "/out:" CACHE STRING
|
2001-12-05 23:00:21 +03:00
|
|
|
"Flags used to specify output filename by the library manager. No space will be appended (use single quotes around value to insert trailing space).")
|
2001-12-01 00:04:59 +03:00
|
|
|
|
|
|
|
# Linker (DLL/exe)
|
2001-11-30 04:59:53 +03:00
|
|
|
|
|
|
|
SET (CMAKE_LINKER link CACHE FILEPATH
|
|
|
|
"Name of linker used.")
|
|
|
|
|
2002-10-06 23:10:21 +04:00
|
|
|
SET (CMAKE_LINKER_FLAGS "/nologo /STACK:10000000 /machine:I386 /INCREMENTAL:YES"
|
|
|
|
CACHE STRING "Flags used by the linker.")
|
2001-11-30 04:59:53 +03:00
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
SET (CMAKE_LINKER_FLAGS_DEBUG "/debug /pdbtype:sept" CACHE STRING
|
|
|
|
"Flags used by the linker during debug builds.")
|
|
|
|
|
2001-12-17 19:30:33 +03:00
|
|
|
SET (CMAKE_LINKER_FLAGS_MINSIZEREL "" CACHE STRING
|
2001-12-01 00:04:59 +03:00
|
|
|
"Flags used by the linker during release minsize builds.")
|
|
|
|
|
2001-11-30 22:33:37 +03:00
|
|
|
SET (CMAKE_LINKER_FLAGS_RELEASE "" CACHE STRING
|
|
|
|
"Flags used by the linker during release builds.")
|
|
|
|
|
|
|
|
SET (CMAKE_LINKER_FLAGS_RELWITHDEBINFO "/debug /pdbtype:sept" CACHE STRING
|
|
|
|
"Flags used by the linker during Release with Debug Info builds.")
|
|
|
|
|
2001-12-07 04:02:43 +03:00
|
|
|
SET (CMAKE_LINKER_HIDE_PARAMETERS 1 CACHE BOOL
|
|
|
|
"Hide linker parameters when it is run.")
|
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
SET (CMAKE_LINKER_OUTPUT_FILE_FLAG "/out:" CACHE STRING
|
2001-12-05 23:00:21 +03:00
|
|
|
"Flags used to specify output filename by the linker. No space will be appended (use single quotes around value to insert trailing space).")
|
2001-11-30 22:33:37 +03:00
|
|
|
|
2001-11-30 04:59:53 +03:00
|
|
|
SET (CMAKE_LINKER_SHARED_LIBRARY_FLAG "/dll" CACHE STRING
|
|
|
|
"Flags used to create a shared library.")
|
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
# Standard lib
|
2001-11-30 04:59:53 +03:00
|
|
|
|
|
|
|
SET (CMAKE_STANDARD_WINDOWS_LIBRARIES "kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib" CACHE STRING
|
|
|
|
"Libraries linked by defalut with all applications.")
|
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
# Make
|
2001-11-30 04:59:53 +03:00
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
SET (CMAKE_MAKE_PROGRAM "nmake" CACHE STRING
|
|
|
|
"Program used to build from makefiles.")
|
2001-11-30 04:59:53 +03:00
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
# Threads
|
2001-11-30 04:59:53 +03:00
|
|
|
|
2001-12-01 00:04:59 +03:00
|
|
|
SET (CMAKE_USE_WIN32_THREADS 1 CACHE BOOL
|
|
|
|
"Use the win32 thread library.")
|
2001-11-16 01:11:26 +03:00
|
|
|
|
2002-03-06 18:44:23 +03:00
|
|
|
# this should not be advanced, but was so we have to
|
|
|
|
# clear it in all the cache files
|
|
|
|
MARK_AS_ADVANCED( CLEAR CMAKE_BUILD_TYPE)
|
2001-11-15 02:12:22 +03:00
|
|
|
|
2001-11-30 04:59:53 +03:00
|
|
|
# The following variables are advanced
|
2001-11-15 02:12:22 +03:00
|
|
|
|
2002-03-06 18:44:23 +03:00
|
|
|
|
2001-11-30 04:59:53 +03:00
|
|
|
MARK_AS_ADVANCED(
|
|
|
|
WORDS_BIGENDIAN
|
|
|
|
HAVE_LIMITS_H
|
|
|
|
HAVE_UNISTD_H
|
2001-12-01 00:04:59 +03:00
|
|
|
CMAKE_EXECUTABLE_SUFFIX
|
|
|
|
CMAKE_MODULE_SUFFIX
|
|
|
|
CMAKE_OBJECT_FILE_SUFFIX
|
|
|
|
CMAKE_SHLIB_SUFFIX
|
|
|
|
CMAKE_STATICLIB_SUFFIX
|
|
|
|
CMAKE_ANSI_CFLAGS
|
|
|
|
CMAKE_CXX_COMPILER
|
|
|
|
CMAKE_CXX_FLAGS
|
|
|
|
CMAKE_CXX_FLAGS_DEBUG
|
|
|
|
CMAKE_CXX_FLAGS_MINSIZEREL
|
|
|
|
CMAKE_CXX_FLAGS_RELEASE
|
|
|
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
2001-11-30 04:59:53 +03:00
|
|
|
CMAKE_C_COMPILER
|
|
|
|
CMAKE_C_FLAGS
|
|
|
|
CMAKE_C_LIBPATH_FLAG
|
2001-12-01 00:04:59 +03:00
|
|
|
CMAKE_C_LINK_EXECUTABLE_FLAG
|
|
|
|
CMAKE_C_OUTPUT_EXECUTABLE_FILE_FLAG
|
|
|
|
CMAKE_C_OUTPUT_OBJECT_FILE_FLAG
|
|
|
|
CMAKE_LIBRARY_MANAGER
|
|
|
|
CMAKE_LIBRARY_MANAGER_FLAGS
|
|
|
|
CMAKE_LIBRARY_MANAGER_OUTPUT_FILE_FLAG
|
2001-11-30 04:59:53 +03:00
|
|
|
CMAKE_LINKER
|
|
|
|
CMAKE_LINKER_FLAGS
|
2001-12-01 00:04:59 +03:00
|
|
|
CMAKE_LINKER_FLAGS_DEBUG
|
|
|
|
CMAKE_LINKER_FLAGS_MINSIZEREL
|
2001-11-30 22:33:37 +03:00
|
|
|
CMAKE_LINKER_FLAGS_RELEASE
|
|
|
|
CMAKE_LINKER_FLAGS_RELWITHDEBINFO
|
2001-12-07 04:02:43 +03:00
|
|
|
CMAKE_LINKER_HIDE_PARAMETERS
|
2001-11-30 04:59:53 +03:00
|
|
|
CMAKE_LINKER_OUTPUT_FILE_FLAG
|
2001-12-01 00:04:59 +03:00
|
|
|
CMAKE_LINKER_SHARED_LIBRARY_FLAG
|
2001-11-30 04:59:53 +03:00
|
|
|
CMAKE_MAKE_PROGRAM
|
2001-12-01 00:04:59 +03:00
|
|
|
CMAKE_STANDARD_WINDOWS_LIBRARIES
|
|
|
|
CMAKE_USE_WIN32_THREADS
|
2001-11-30 04:59:53 +03:00
|
|
|
)
|