2010-09-07 11:34:51 -04:00
|
|
|
|
2012-03-25 07:53:53 -04:00
|
|
|
link_libraries(glfw ${OPENGL_glu_LIBRARY})
|
|
|
|
|
|
|
|
if (BUILD_SHARED_LIBS)
|
2012-03-25 07:58:07 -04:00
|
|
|
add_definitions(-DGLFW_DLL)
|
2012-03-25 11:05:00 -04:00
|
|
|
link_libraries(${OPENGL_gl_LIBRARY})
|
2012-03-25 07:53:53 -04:00
|
|
|
else()
|
2012-03-25 11:05:00 -04:00
|
|
|
link_libraries(${glfw_LIBRARIES})
|
2012-03-25 07:53:53 -04:00
|
|
|
endif()
|
2010-09-07 11:34:51 -04:00
|
|
|
|
2011-09-06 08:33:25 -04:00
|
|
|
include_directories(${GLFW_SOURCE_DIR}/include
|
|
|
|
${GLFW_SOURCE_DIR}/support
|
|
|
|
${OPENGL_INCLUDE_DIR})
|
2011-09-21 10:43:28 -04:00
|
|
|
add_executable(clipboard clipboard.c)
|
2012-02-19 01:29:48 -05:00
|
|
|
target_link_libraries(clipboard ${STATIC_DEPS})
|
2010-09-07 11:34:51 -04:00
|
|
|
|
|
|
|
add_executable(defaults defaults.c)
|
|
|
|
add_executable(events events.c)
|
2010-11-17 10:26:32 -05:00
|
|
|
add_executable(fsaa fsaa.c getopt.c)
|
2010-09-18 12:28:14 -04:00
|
|
|
add_executable(fsfocus fsfocus.c)
|
2010-10-12 22:04:43 -04:00
|
|
|
add_executable(gamma gamma.c getopt.c)
|
2011-10-08 18:01:44 -04:00
|
|
|
add_executable(glfwinfo glfwinfo.c getopt.c)
|
2010-09-13 19:04:33 -04:00
|
|
|
add_executable(iconify iconify.c getopt.c)
|
2010-09-07 11:34:51 -04:00
|
|
|
add_executable(joysticks joysticks.c)
|
2010-10-04 15:14:58 -04:00
|
|
|
add_executable(listmodes listmodes.c)
|
2012-03-07 19:01:42 -05:00
|
|
|
add_executable(modes modes.c getopt.c)
|
2010-09-07 11:34:51 -04:00
|
|
|
add_executable(peter peter.c)
|
|
|
|
add_executable(reopen reopen.c)
|
2011-11-02 12:59:18 -04:00
|
|
|
|
|
|
|
add_executable(accuracy WIN32 MACOSX_BUNDLE accuracy.c)
|
2012-03-05 16:37:48 -05:00
|
|
|
set_target_properties(accuracy PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Accuracy")
|
2011-11-02 12:59:18 -04:00
|
|
|
|
|
|
|
add_executable(sharing WIN32 MACOSX_BUNDLE sharing.c)
|
2012-03-05 16:37:48 -05:00
|
|
|
set_target_properties(sharing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Sharing")
|
2010-09-07 11:34:51 -04:00
|
|
|
|
2011-11-02 12:59:18 -04:00
|
|
|
add_executable(tearing WIN32 MACOSX_BUNDLE tearing.c)
|
2012-03-05 16:37:48 -05:00
|
|
|
set_target_properties(tearing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Tearing")
|
2010-09-07 11:34:51 -04:00
|
|
|
|
2012-02-02 10:04:37 -05:00
|
|
|
add_executable(title WIN32 MACOSX_BUNDLE title.c)
|
2012-03-05 16:37:48 -05:00
|
|
|
set_target_properties(title PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Title")
|
2012-02-02 10:04:37 -05:00
|
|
|
|
2011-11-02 12:59:18 -04:00
|
|
|
add_executable(windows WIN32 MACOSX_BUNDLE windows.c)
|
2012-03-05 16:37:48 -05:00
|
|
|
set_target_properties(windows PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Windows")
|
2010-09-07 11:34:51 -04:00
|
|
|
|
2012-02-02 10:04:37 -05:00
|
|
|
set(WINDOWS_BINARIES accuracy sharing tearing title windows)
|
2011-10-08 18:01:44 -04:00
|
|
|
set(CONSOLE_BINARIES defaults events fsaa fsfocus gamma glfwinfo iconify
|
2012-03-07 19:01:42 -05:00
|
|
|
joysticks listmodes modes peter reopen)
|
2010-09-20 16:37:22 -04:00
|
|
|
|
2012-02-29 14:15:39 -05:00
|
|
|
if (MSVC)
|
2012-03-05 17:41:05 -05:00
|
|
|
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
|
|
|
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
|
|
|
|
LINK_FLAGS "/ENTRY:mainCRTStartup")
|
2012-02-29 14:15:39 -05:00
|
|
|
endif()
|
2010-09-07 11:34:51 -04:00
|
|
|
|
2012-03-05 16:37:48 -05:00
|
|
|
if (APPLE)
|
2012-03-05 17:41:05 -05:00
|
|
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
|
|
|
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${GLFW_VERSION}
|
|
|
|
MACOSX_BUNDLE_LONG_VERSION_STRING ${GLFW_VERSION_FULL})
|
2012-03-05 16:37:48 -05:00
|
|
|
endif()
|
2010-09-07 11:34:51 -04:00
|
|
|
|