2010-09-07 15:34:51 +00:00
|
|
|
|
2015-01-25 22:35:54 +00:00
|
|
|
link_libraries(glfw)
|
2012-03-25 11:53:53 +00:00
|
|
|
|
|
|
|
if (BUILD_SHARED_LIBS)
|
2012-03-25 11:58:07 +00:00
|
|
|
add_definitions(-DGLFW_DLL)
|
2014-08-14 23:10:07 +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
|
|
|
|
2014-08-11 18:24:16 +00:00
|
|
|
include_directories("${GLFW_SOURCE_DIR}/include"
|
|
|
|
"${GLFW_SOURCE_DIR}/deps")
|
2012-12-27 17:04:24 +00:00
|
|
|
|
2014-08-14 23:10:07 +00:00
|
|
|
if ("${OPENGL_INCLUDE_DIR}")
|
|
|
|
include_directories("${OPENGL_INCLUDE_DIR}")
|
2012-12-27 17:04:24 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-08-11 18:24:16 +00:00
|
|
|
set(GETOPT "${GLFW_SOURCE_DIR}/deps/getopt.h"
|
|
|
|
"${GLFW_SOURCE_DIR}/deps/getopt.c")
|
|
|
|
set(TINYCTHREAD "${GLFW_SOURCE_DIR}/deps/tinycthread.h"
|
|
|
|
"${GLFW_SOURCE_DIR}/deps/tinycthread.c")
|
2012-08-12 10:44:23 +00:00
|
|
|
|
|
|
|
add_executable(clipboard clipboard.c ${GETOPT})
|
2013-10-17 13:35:01 +00:00
|
|
|
add_executable(events events.c ${GETOPT})
|
2015-05-19 13:16:42 +00:00
|
|
|
add_executable(msaa msaa.c ${GETOPT})
|
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)
|
2015-01-25 22:37:29 +00:00
|
|
|
add_executable(monitors monitors.c ${GETOPT})
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(peter peter.c)
|
|
|
|
add_executable(reopen reopen.c)
|
2013-12-04 13:19:22 +00:00
|
|
|
add_executable(cursor cursor.c)
|
|
|
|
|
|
|
|
add_executable(cursoranim WIN32 MACOSX_BUNDLE cursoranim.c)
|
|
|
|
set_target_properties(cursoranim PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Cursor animation")
|
2012-08-12 14:18:59 +00:00
|
|
|
|
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
|
|
|
|
2014-03-09 16:18:39 +00:00
|
|
|
add_executable(empty WIN32 MACOSX_BUNDLE empty.c ${TINYCTHREAD})
|
|
|
|
set_target_properties(empty PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Empty Event")
|
|
|
|
|
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
|
|
|
|
2015-05-27 14:14:15 +00:00
|
|
|
add_executable(tearing WIN32 MACOSX_BUNDLE tearing.c ${GETOPT})
|
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-08-13 17:52:49 +00:00
|
|
|
add_executable(threads WIN32 MACOSX_BUNDLE threads.c ${TINYCTHREAD})
|
|
|
|
set_target_properties(threads PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Threads")
|
|
|
|
|
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
|
|
|
|
2014-08-11 18:24:16 +00:00
|
|
|
target_link_libraries(empty "${CMAKE_THREAD_LIBS_INIT}" "${RT_LIBRARY}")
|
|
|
|
target_link_libraries(threads "${CMAKE_THREAD_LIBS_INIT}" "${RT_LIBRARY}")
|
2012-08-13 17:52:49 +00:00
|
|
|
|
2013-12-04 13:19:22 +00:00
|
|
|
set(WINDOWS_BINARIES accuracy empty sharing tearing threads title windows cursoranim)
|
2015-07-01 12:49:22 +00:00
|
|
|
set(CONSOLE_BINARIES clipboard events msaa gamma glfwinfo
|
2015-01-25 22:37:29 +00:00
|
|
|
iconify joysticks monitors peter reopen cursor)
|
2010-09-20 20:37:22 +00:00
|
|
|
|
2015-01-04 22:23:16 +00:00
|
|
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
|
|
|
|
FOLDER "GLFW3/Tests")
|
|
|
|
|
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}
|
2015-03-16 21:39:14 +00:00
|
|
|
MACOSX_BUNDLE_LONG_VERSION_STRING ${GLFW_VERSION_FULL}
|
2015-05-13 00:30:31 +00:00
|
|
|
MACOSX_BUNDLE_INFO_PLIST "${GLFW_SOURCE_DIR}/CMake/MacOSXBundleInfo.plist.in")
|
2012-03-05 21:37:48 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|