2010-09-07 15:34:51 +00:00
|
|
|
|
2012-03-25 11:53:53 +00:00
|
|
|
link_libraries(glfw ${OPENGL_glu_LIBRARY})
|
|
|
|
|
|
|
|
if (BUILD_SHARED_LIBS)
|
2012-03-25 11:58:07 +00:00
|
|
|
add_definitions(-DGLFW_DLL)
|
2012-04-19 14:57:44 +00:00
|
|
|
link_libraries(${OPENGL_gl_LIBRARY} ${MATH_LIBRARY})
|
2012-03-25 11:53:53 +00:00
|
|
|
else()
|
2012-03-25 15:05:00 +00:00
|
|
|
link_libraries(${glfw_LIBRARIES})
|
2012-03-25 11:53:53 +00:00
|
|
|
endif()
|
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
|
|
|
|
2012-08-12 10:44:23 +00:00
|
|
|
set(GETOPT ${GLFW_SOURCE_DIR}/support/getopt.h
|
|
|
|
${GLFW_SOURCE_DIR}/support/getopt.c)
|
|
|
|
|
|
|
|
add_executable(clipboard clipboard.c ${GETOPT})
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(defaults defaults.c)
|
|
|
|
add_executable(events events.c)
|
2012-08-12 10:44:23 +00:00
|
|
|
add_executable(fsaa fsaa.c ${GETOPT})
|
2010-09-18 16:28:14 +00:00
|
|
|
add_executable(fsfocus fsfocus.c)
|
2012-08-12 10:44:23 +00:00
|
|
|
add_executable(gamma gamma.c ${GETOPT})
|
|
|
|
add_executable(glfwinfo glfwinfo.c ${GETOPT})
|
|
|
|
add_executable(iconify iconify.c ${GETOPT})
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(joysticks joysticks.c)
|
2012-08-12 10:44:23 +00:00
|
|
|
add_executable(modes modes.c ${GETOPT})
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(peter peter.c)
|
|
|
|
add_executable(reopen reopen.c)
|
2011-11-02 16:59:18 +00:00
|
|
|
|
|
|
|
add_executable(accuracy WIN32 MACOSX_BUNDLE accuracy.c)
|
2012-03-05 21:37:48 +00:00
|
|
|
set_target_properties(accuracy PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Accuracy")
|
2011-11-02 16:59:18 +00:00
|
|
|
|
|
|
|
add_executable(sharing WIN32 MACOSX_BUNDLE sharing.c)
|
2012-03-05 21:37:48 +00:00
|
|
|
set_target_properties(sharing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Sharing")
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-11-02 16:59:18 +00:00
|
|
|
add_executable(tearing WIN32 MACOSX_BUNDLE tearing.c)
|
2012-03-05 21:37:48 +00:00
|
|
|
set_target_properties(tearing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Tearing")
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-02-02 15:04:37 +00:00
|
|
|
add_executable(title WIN32 MACOSX_BUNDLE title.c)
|
2012-03-05 21:37:48 +00:00
|
|
|
set_target_properties(title PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Title")
|
2012-02-02 15:04:37 +00:00
|
|
|
|
2011-11-02 16:59:18 +00:00
|
|
|
add_executable(windows WIN32 MACOSX_BUNDLE windows.c)
|
2012-03-05 21:37:48 +00:00
|
|
|
set_target_properties(windows PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Windows")
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-02-02 15:04:37 +00:00
|
|
|
set(WINDOWS_BINARIES accuracy sharing tearing title windows)
|
2012-04-13 10:57:04 +00:00
|
|
|
set(CONSOLE_BINARIES clipboard defaults events fsaa fsfocus gamma glfwinfo
|
2012-05-06 22:34:40 +00:00
|
|
|
iconify joysticks modes peter reopen)
|
2010-09-20 20:37:22 +00:00
|
|
|
|
2012-02-29 19:15:39 +00:00
|
|
|
if (MSVC)
|
2012-03-05 22:41:05 +00: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 19:15:39 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-03-05 21:37:48 +00:00
|
|
|
if (APPLE)
|
2012-03-05 22:41:05 +00: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 21:37:48 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|