mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 20:49:41 +00:00
176fe63d15
cmMakefile.cxx, but now in the platform files and are now valid for the target platform, not the host platform. New variables CMAKE_HOST_WIN32, CMAKE_HOST_UNIX, CMAKE_HOST_APPLE and CMAKE_HOST_CYGWIN have been added in cmMakefile.cxx (...and have now to be used in all cmake files which are executed before CMakeSystemSpecificInformation.cmake is loaded). For compatibility the old set is set to the new one in CMakeDetermineSystem.cmake and reset before the system platform files are loaded, so custom language or compiler modules which use these should still work. Alex
37 lines
1.2 KiB
CMake
37 lines
1.2 KiB
CMake
SET(WIN32 1)
|
|
|
|
SET(CMAKE_STATIC_LIBRARY_PREFIX "")
|
|
SET(CMAKE_STATIC_LIBRARY_SUFFIX ".lib")
|
|
SET(CMAKE_SHARED_LIBRARY_PREFIX "") # lib
|
|
SET(CMAKE_SHARED_LIBRARY_SUFFIX ".dll") # .so
|
|
SET(CMAKE_IMPORT_LIBRARY_PREFIX "")
|
|
SET(CMAKE_IMPORT_LIBRARY_SUFFIX ".lib")
|
|
SET(CMAKE_EXECUTABLE_SUFFIX ".exe") # .exe
|
|
SET(CMAKE_LINK_LIBRARY_SUFFIX ".lib")
|
|
SET(CMAKE_DL_LIBS "")
|
|
|
|
SET(CMAKE_FIND_LIBRARY_PREFIXES "")
|
|
SET(CMAKE_FIND_LIBRARY_SUFFIXES ".lib")
|
|
|
|
# for borland make long command lines are redirected to a file
|
|
# with the following syntax, see Windows-bcc32.cmake for use
|
|
IF(CMAKE_GENERATOR MATCHES "Borland")
|
|
SET(CMAKE_START_TEMP_FILE "@&&|\n")
|
|
SET(CMAKE_END_TEMP_FILE "\n|")
|
|
ENDIF(CMAKE_GENERATOR MATCHES "Borland")
|
|
|
|
# for nmake make long command lines are redirected to a file
|
|
# with the following syntax, see Windows-bcc32.cmake for use
|
|
IF(CMAKE_GENERATOR MATCHES "NMake")
|
|
SET(CMAKE_START_TEMP_FILE "@<<\n")
|
|
SET(CMAKE_END_TEMP_FILE "\n<<")
|
|
ENDIF(CMAKE_GENERATOR MATCHES "NMake")
|
|
|
|
INCLUDE(Platform/WindowsPaths)
|
|
|
|
# uncomment these out to debug nmake and borland makefiles
|
|
#SET(CMAKE_START_TEMP_FILE "")
|
|
#SET(CMAKE_END_TEMP_FILE "")
|
|
#SET(CMAKE_VERBOSE_MAKEFILE 1)
|
|
|