mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Added binary category variables for easier maintenance.
This commit is contained in:
parent
0428d03ca5
commit
e13f0c441c
@ -23,15 +23,22 @@ else(APPLE)
|
|||||||
add_executable(wave WIN32 wave.c)
|
add_executable(wave WIN32 wave.c)
|
||||||
endif(APPLE)
|
endif(APPLE)
|
||||||
|
|
||||||
|
set(WINDOWS_BINARIES boing gears splitview triangle wave)
|
||||||
|
set(CONSOLE_BINARIES listmodes)
|
||||||
|
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
|
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
|
||||||
set_target_properties(boing gears splitview triangle wave PROPERTIES LINK_FLAGS "/ENTRY:mainCRTStartup")
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES}
|
||||||
|
PROPERTIES LINK_FLAGS "/ENTRY:mainCRTStartup")
|
||||||
endif(MSVC)
|
endif(MSVC)
|
||||||
|
|
||||||
if(CYGWIN)
|
if(CYGWIN)
|
||||||
# Set cross-compile and subsystem compile and link flags
|
# Set cross-compile and subsystem compile and link flags
|
||||||
set_target_properties(boing gears listmodes splitview triangle wave PROPERTIES COMPILE_FLAGS "-mno-cygwin")
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES}
|
||||||
set_target_properties(boing gears splitview triangle wave PROPERTIES LINK_FLAGS "-mno-cygwin -mwindows")
|
PROPERTIES COMPILE_FLAGS "-mno-cygwin")
|
||||||
set_target_properties(listmodes PROPERTIES LINK_FLAGS "-mno-cygwin -mconsole")
|
set_target_properties(${WINDOWS_BINARIES}
|
||||||
|
PROPERTIES LINK_FLAGS "-mno-cygwin -mwindows")
|
||||||
|
set_target_properties(${CONSOLE_BINARIES}
|
||||||
|
PROPERTIES LINK_FLAGS "-mno-cygwin -mconsole")
|
||||||
endif(CYGWIN)
|
endif(CYGWIN)
|
||||||
|
|
||||||
|
@ -26,15 +26,22 @@ else()
|
|||||||
add_executable(windows WIN32 windows.c)
|
add_executable(windows WIN32 windows.c)
|
||||||
endif(APPLE)
|
endif(APPLE)
|
||||||
|
|
||||||
|
set(WINDOWS_BINARIES accuracy tearing windows)
|
||||||
|
set(CONSOLE_BINARIES defaults events fsaa fsfocus iconify joysticks peter reopen version)
|
||||||
|
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
|
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
|
||||||
set_target_properties(accuracy defaults events fsfocus iconify joysticks fsaa peter reopen tearing version windows PROPERTIES LINK_FLAGS "/ENTRY:mainCRTStartup")
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES}
|
||||||
|
PROPERTIES LINK_FLAGS "/ENTRY:mainCRTStartup")
|
||||||
endif(MSVC)
|
endif(MSVC)
|
||||||
|
|
||||||
if(CYGWIN)
|
if(CYGWIN)
|
||||||
# Set cross-compile and subsystem compile and link flags
|
# Set cross-compile and subsystem compile and link flags
|
||||||
set_target_properties(accuracy defaults events fsaa fsfocus iconify joysticks peter reopen tearing version windows PROPERTIES COMPILE_FLAGS "-mno-cygwin")
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES}
|
||||||
set_target_properties(accuracy fsaa tearing windows PROPERTIES LINK_FLAGS "-mno-cygwin -mwindows")
|
PROPERTIES COMPILE_FLAGS "-mno-cygwin")
|
||||||
set_target_properties(events defaults fsfocus iconify joysticks peter reopen version PROPERTIES LINK_FLAGS "-mno-cygwin -mconsole")
|
set_target_properties(${WINDOWS_BINARIES}
|
||||||
|
PROPERTIES LINK_FLAGS "-mno-cygwin -mwindows")
|
||||||
|
set_target_properties(${CONSOLE_BINARIES}
|
||||||
|
PROPERTIES LINK_FLAGS "-mno-cygwin -mconsole")
|
||||||
endif(CYGWIN)
|
endif(CYGWIN)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user