diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-12-07 01:02:43 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-12-07 01:02:43 (GMT) |
commit | efe160656b229a96eccff3440752557edafc9232 (patch) | |
tree | 859a1738841738501dbedd4f42c7507895683d7c /Templates | |
parent | b689b4b5fab0c580f98ee2fdbcc35bc5ad20564a (diff) | |
download | CMake-efe160656b229a96eccff3440752557edafc9232.zip CMake-efe160656b229a96eccff3440752557edafc9232.tar.gz CMake-efe160656b229a96eccff3440752557edafc9232.tar.bz2 |
Add CMAKE_LINKER_HIDE_PARAMETERS since some linkers just do not support the @<< syntax
Diffstat (limited to 'Templates')
-rw-r--r-- | Templates/CMakeNMakeWindowsSystemConfig.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Templates/CMakeNMakeWindowsSystemConfig.cmake b/Templates/CMakeNMakeWindowsSystemConfig.cmake index 213aa91..b58832a 100644 --- a/Templates/CMakeNMakeWindowsSystemConfig.cmake +++ b/Templates/CMakeNMakeWindowsSystemConfig.cmake @@ -104,6 +104,9 @@ SET (CMAKE_LINKER_FLAGS_RELEASE "" CACHE STRING SET (CMAKE_LINKER_FLAGS_RELWITHDEBINFO "/debug /pdbtype:sept" CACHE STRING "Flags used by the linker during Release with Debug Info builds.") +SET (CMAKE_LINKER_HIDE_PARAMETERS 1 CACHE BOOL + "Hide linker parameters when it is run.") + SET (CMAKE_LINKER_OUTPUT_FILE_FLAG "/out:" CACHE STRING "Flags used to specify output filename by the linker. No space will be appended (use single quotes around value to insert trailing space).") @@ -160,6 +163,7 @@ CMAKE_LINKER_FLAGS_DEBUG CMAKE_LINKER_FLAGS_MINSIZEREL CMAKE_LINKER_FLAGS_RELEASE CMAKE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_LINKER_HIDE_PARAMETERS CMAKE_LINKER_OUTPUT_FILE_FLAG CMAKE_LINKER_SHARED_LIBRARY_FLAG CMAKE_MAKE_PROGRAM |