2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
link_libraries(libglfwStatic ${GLFW_LIBRARIES} ${OPENGL_glu_LIBRARY})
|
|
|
|
|
2011-09-06 12:33:25 +00:00
|
|
|
include_directories(${GLFW_SOURCE_DIR}/include
|
|
|
|
${GLFW_SOURCE_DIR}/support
|
|
|
|
${OPENGL_INCLUDE_DIR})
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-21 14:43:28 +00:00
|
|
|
add_executable(clipboard clipboard.c)
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(defaults defaults.c)
|
|
|
|
add_executable(events events.c)
|
2010-11-17 15:26:32 +00:00
|
|
|
add_executable(fsaa fsaa.c getopt.c)
|
2010-09-18 16:28:14 +00:00
|
|
|
add_executable(fsfocus fsfocus.c)
|
2010-10-13 02:04:43 +00:00
|
|
|
add_executable(gamma gamma.c getopt.c)
|
2011-10-08 22:01:44 +00:00
|
|
|
add_executable(glfwinfo glfwinfo.c getopt.c)
|
2010-09-13 23:04:33 +00:00
|
|
|
add_executable(iconify iconify.c getopt.c)
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(joysticks joysticks.c)
|
2010-10-04 19:14:58 +00:00
|
|
|
add_executable(listmodes listmodes.c)
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(peter peter.c)
|
|
|
|
add_executable(reopen reopen.c)
|
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
# Set fancy names for bundles
|
|
|
|
add_executable(Accuracy MACOSX_BUNDLE accuracy.c)
|
2010-10-04 17:32:39 +00:00
|
|
|
add_executable(Sharing MACOSX_BUNDLE sharing.c)
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(Tearing MACOSX_BUNDLE tearing.c)
|
2010-09-09 22:31:22 +00:00
|
|
|
add_executable(Windows MACOSX_BUNDLE windows.c)
|
2010-09-07 15:34:51 +00:00
|
|
|
else()
|
|
|
|
# Set boring names for executables
|
|
|
|
add_executable(accuracy WIN32 accuracy.c)
|
2010-10-04 17:32:39 +00:00
|
|
|
add_executable(sharing WIN32 sharing.c)
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(tearing WIN32 tearing.c)
|
2010-09-09 22:31:22 +00:00
|
|
|
add_executable(windows WIN32 windows.c)
|
2010-09-07 15:34:51 +00:00
|
|
|
endif(APPLE)
|
|
|
|
|
2010-10-04 17:32:39 +00:00
|
|
|
set(WINDOWS_BINARIES accuracy sharing tearing windows)
|
2012-02-19 06:17:52 +00:00
|
|
|
set(CONSOLE_BINARIES clipboard defaults events fsaa fsfocus gamma glfwinfo iconify
|
2011-10-08 22:01:44 +00:00
|
|
|
joysticks listmodes peter reopen)
|
2010-09-20 20:37:22 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
if(MSVC)
|
|
|
|
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
|
2010-10-04 19:21:50 +00:00
|
|
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
|
|
|
|
LINK_FLAGS "/ENTRY:mainCRTStartup")
|
2010-09-07 15:34:51 +00:00
|
|
|
endif(MSVC)
|
|
|
|
|
|
|
|
if(CYGWIN)
|
|
|
|
# Set cross-compile and subsystem compile and link flags
|
2010-10-04 19:21:50 +00:00
|
|
|
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")
|
2010-09-07 15:34:51 +00:00
|
|
|
endif(CYGWIN)
|
|
|
|
|