diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-05-08 13:55:59 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-05-08 13:55:59 (GMT) |
commit | 6292558f36a30b20f1c1c3b0410004222d0e4f6f (patch) | |
tree | b227c694176309dfa3b31dec6ab43d801787eb45 /Modules | |
parent | 5394ecef826ed5d2a0790156155fda466870b5e9 (diff) | |
download | CMake-6292558f36a30b20f1c1c3b0410004222d0e4f6f.zip CMake-6292558f36a30b20f1c1c3b0410004222d0e4f6f.tar.gz CMake-6292558f36a30b20f1c1c3b0410004222d0e4f6f.tar.bz2 |
BUG: fix for borland win32 exe builds
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Platform/Windows-bcc32.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Platform/Windows-bcc32.cmake b/Modules/Platform/Windows-bcc32.cmake index 030f3e9..8f7efbb 100644 --- a/Modules/Platform/Windows-bcc32.cmake +++ b/Modules/Platform/Windows-bcc32.cmake @@ -67,9 +67,9 @@ SET (CMAKE_BUILD_TYPE Debug CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel.") # extra flags for a win32 exe -SET(CMAKE_CREATE_WIN32_EXE -tW -tWM ) +SET(CMAKE_CREATE_WIN32_EXE "-tW -tWM" ) # extra flags for a console app -SET(CMAKE_CREATE_CONSOLE_EXE -tWC ) +SET(CMAKE_CREATE_CONSOLE_EXE "-tWC" ) SET (CMAKE_CXX_FLAGS_INIT "-w- -whid -waus -wpar -tWM") SET (CMAKE_CXX_FLAGS_DEBUG_INIT "-Od -v") |