Build file fixes and formatting.

This commit is contained in:
Camilla Berglund 2010-10-04 21:21:50 +02:00
parent ba9f028eba
commit 104dfaa3ac
2 changed files with 13 additions and 13 deletions

View File

@ -26,14 +26,14 @@ set(WINDOWS_BINARIES boing gears heightmap splitview triangle wave)
if(MSVC)
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
set_target_properties(${WINDOWS_BINARIES}
PROPERTIES LINK_FLAGS "/ENTRY:mainCRTStartup")
set_target_properties(${WINDOWS_BINARIES} PROPERTIES
LINK_FLAGS "/ENTRY:mainCRTStartup")
endif(MSVC)
if(CYGWIN)
# Set cross-compile and subsystem compile and link flags
set_target_properties(${WINDOWS_BINARIES}
PROPERTIES COMPILE_FLAGS "-mno-cygwin"
PROPERTIES LINK_FLAGS "-mno-cygwin -mwindows")
set_target_properties(${WINDOWS_BINARIES} PROPERTIES
COMPILE_FLAGS "-mno-cygwin"
LINK_FLAGS "-mno-cygwin -mwindows")
endif(CYGWIN)

View File

@ -35,17 +35,17 @@ set(CONSOLE_BINARIES defaults events fsaa fsfocus iconify joysticks listmodes
if(MSVC)
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES}
PROPERTIES LINK_FLAGS "/ENTRY:mainCRTStartup")
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
LINK_FLAGS "/ENTRY:mainCRTStartup")
endif(MSVC)
if(CYGWIN)
# Set cross-compile and subsystem compile and link flags
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES}
PROPERTIES COMPILE_FLAGS "-mno-cygwin")
set_target_properties(${WINDOWS_BINARIES}
PROPERTIES LINK_FLAGS "-mno-cygwin -mwindows")
set_target_properties(${CONSOLE_BINARIES}
PROPERTIES LINK_FLAGS "-mno-cygwin -mconsole")
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
COMPILE_FLAGS "-mno-cygwin")
set_target_properties(${WINDOWS_BINARIES} PROPERTIES
LINK_FLAGS "-mno-cygwin -mwindows")
set_target_properties(${CONSOLE_BINARIES} PROPERTIES
LINK_FLAGS "-mno-cygwin -mconsole")
endif(CYGWIN)