2010-09-07 15:34:51 +00:00
|
|
|
|
2011-11-02 16:59:18 +00:00
|
|
|
set(STATIC_DEPS libglfwStatic ${GLFW_LIBRARIES} ${OPENGL_glu_LIBRARY})
|
|
|
|
set(SHARED_DEPS libglfwShared ${GLFW_LIBRARIES} ${OPENGL_glu_LIBRARY})
|
2010-09-07 15:34:51 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
add_executable(defaults defaults.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(defaults ${STATIC_DEPS})
|
|
|
|
|
|
|
|
add_executable(dynamic dynamic.c)
|
|
|
|
target_link_libraries(dynamic ${SHARED_DEPS})
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(events events.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(events ${STATIC_DEPS})
|
|
|
|
|
2010-11-17 15:26:32 +00:00
|
|
|
add_executable(fsaa fsaa.c getopt.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(fsaa ${STATIC_DEPS})
|
|
|
|
|
2010-09-18 16:28:14 +00:00
|
|
|
add_executable(fsfocus fsfocus.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(fsfocus ${STATIC_DEPS})
|
|
|
|
|
2010-10-13 02:04:43 +00:00
|
|
|
add_executable(gamma gamma.c getopt.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(gamma ${STATIC_DEPS})
|
|
|
|
|
2011-10-08 22:01:44 +00:00
|
|
|
add_executable(glfwinfo glfwinfo.c getopt.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(glfwinfo ${STATIC_DEPS})
|
|
|
|
|
2010-09-13 23:04:33 +00:00
|
|
|
add_executable(iconify iconify.c getopt.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(iconify ${STATIC_DEPS})
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(joysticks joysticks.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(joysticks ${STATIC_DEPS})
|
|
|
|
|
2010-10-04 19:14:58 +00:00
|
|
|
add_executable(listmodes listmodes.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(listmodes ${STATIC_DEPS})
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(peter peter.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(peter ${STATIC_DEPS})
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(reopen reopen.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
target_link_libraries(reopen ${STATIC_DEPS})
|
|
|
|
|
|
|
|
add_executable(accuracy WIN32 MACOSX_BUNDLE accuracy.c)
|
|
|
|
target_link_libraries(accuracy ${STATIC_DEPS})
|
|
|
|
|
|
|
|
add_executable(sharing WIN32 MACOSX_BUNDLE sharing.c)
|
|
|
|
target_link_libraries(sharing ${STATIC_DEPS})
|
|
|
|
|
|
|
|
add_executable(tearing WIN32 MACOSX_BUNDLE tearing.c)
|
|
|
|
target_link_libraries(tearing ${STATIC_DEPS})
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-11-02 16:59:18 +00:00
|
|
|
add_executable(windows WIN32 MACOSX_BUNDLE windows.c)
|
|
|
|
target_link_libraries(windows ${STATIC_DEPS})
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-10-04 17:32:39 +00:00
|
|
|
set(WINDOWS_BINARIES accuracy sharing tearing windows)
|
2011-10-08 22:01:44 +00:00
|
|
|
set(CONSOLE_BINARIES defaults events fsaa fsfocus gamma glfwinfo iconify
|
|
|
|
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)
|
|
|
|
|