2010-09-07 17:34:51 +02:00
|
|
|
|
2015-01-25 23:35:54 +01:00
|
|
|
link_libraries(glfw)
|
2012-03-25 13:53:53 +02:00
|
|
|
|
|
|
|
if (BUILD_SHARED_LIBS)
|
2015-10-14 03:11:20 +02:00
|
|
|
link_libraries("${MATH_LIBRARY}")
|
2012-03-25 13:53:53 +02:00
|
|
|
endif()
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2015-12-13 20:01:01 +01:00
|
|
|
if (MSVC)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
endif()
|
|
|
|
|
2016-02-02 00:54:57 +01:00
|
|
|
include_directories("${GLFW_SOURCE_DIR}/deps")
|
2012-12-27 18:04:24 +01:00
|
|
|
|
2015-10-14 03:11:20 +02:00
|
|
|
set(GLAD "${GLFW_SOURCE_DIR}/deps/glad/glad.h"
|
|
|
|
"${GLFW_SOURCE_DIR}/deps/glad.c")
|
2014-08-11 20:24:16 +02: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 12:44:23 +02:00
|
|
|
|
2015-10-14 03:11:20 +02:00
|
|
|
add_executable(clipboard clipboard.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(events events.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(msaa msaa.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(gamma gamma.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(glfwinfo glfwinfo.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(iconify iconify.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(joysticks joysticks.c ${GLAD})
|
|
|
|
add_executable(monitors monitors.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(reopen reopen.c ${GLAD})
|
|
|
|
add_executable(cursor cursor.c ${GLAD})
|
|
|
|
|
|
|
|
add_executable(empty WIN32 MACOSX_BUNDLE empty.c ${TINYCTHREAD} ${GLAD})
|
2016-03-11 11:50:37 +01:00
|
|
|
add_executable(icon WIN32 MACOSX_BUNDLE icon.c ${GLAD})
|
2015-10-14 03:11:20 +02:00
|
|
|
add_executable(sharing WIN32 MACOSX_BUNDLE sharing.c ${GLAD})
|
|
|
|
add_executable(tearing WIN32 MACOSX_BUNDLE tearing.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(threads WIN32 MACOSX_BUNDLE threads.c ${TINYCTHREAD} ${GLAD})
|
2016-03-16 11:16:06 +01:00
|
|
|
add_executable(timeout WIN32 MACOSX_BUNDLE timeout.c ${GLAD})
|
2015-10-14 03:11:20 +02:00
|
|
|
add_executable(title WIN32 MACOSX_BUNDLE title.c ${GLAD})
|
2016-03-07 13:31:23 +01:00
|
|
|
add_executable(windows WIN32 MACOSX_BUNDLE windows.c ${GETOPT} ${GLAD})
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2014-08-11 20:24:16 +02:00
|
|
|
target_link_libraries(empty "${CMAKE_THREAD_LIBS_INIT}" "${RT_LIBRARY}")
|
|
|
|
target_link_libraries(threads "${CMAKE_THREAD_LIBS_INIT}" "${RT_LIBRARY}")
|
2012-08-13 19:52:49 +02:00
|
|
|
|
2016-03-16 11:16:06 +01:00
|
|
|
set(WINDOWS_BINARIES empty icon sharing tearing threads timeout title windows)
|
2015-07-01 14:49:22 +02:00
|
|
|
set(CONSOLE_BINARIES clipboard events msaa gamma glfwinfo
|
2015-07-15 12:13:42 +02:00
|
|
|
iconify joysticks monitors reopen cursor)
|
2010-09-20 22:37:22 +02:00
|
|
|
|
2015-08-10 20:19:04 +02:00
|
|
|
if (VULKAN_FOUND)
|
|
|
|
add_executable(vulkan WIN32 vulkan.c ${ICON})
|
|
|
|
target_include_directories(vulkan PRIVATE "${VULKAN_INCLUDE_DIR}")
|
2016-08-05 00:23:16 +02:00
|
|
|
if (NOT GLFW_VULKAN_STATIC)
|
|
|
|
target_link_libraries(vulkan "${VULKAN_LIBRARY}")
|
|
|
|
endif()
|
2015-08-10 20:19:04 +02:00
|
|
|
list(APPEND WINDOWS_BINARIES vulkan)
|
|
|
|
endif()
|
|
|
|
|
2015-01-04 23:23:16 +01:00
|
|
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
|
|
|
|
FOLDER "GLFW3/Tests")
|
|
|
|
|
2012-02-29 20:15:39 +01:00
|
|
|
if (MSVC)
|
2012-03-05 23:41:05 +01: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 20:15:39 +01:00
|
|
|
endif()
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2012-03-05 22:37:48 +01:00
|
|
|
if (APPLE)
|
2015-10-25 03:56:43 +01:00
|
|
|
set_target_properties(empty PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Empty Event")
|
|
|
|
set_target_properties(sharing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Sharing")
|
|
|
|
set_target_properties(tearing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Tearing")
|
|
|
|
set_target_properties(threads PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Threads")
|
2016-03-16 11:16:06 +01:00
|
|
|
set_target_properties(timeout PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Timeout")
|
2015-10-25 03:56:43 +01:00
|
|
|
set_target_properties(title PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Title")
|
|
|
|
set_target_properties(windows PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Windows")
|
|
|
|
|
2012-03-05 23:41:05 +01:00
|
|
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
|
|
|
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${GLFW_VERSION}
|
2015-03-16 22:39:14 +01:00
|
|
|
MACOSX_BUNDLE_LONG_VERSION_STRING ${GLFW_VERSION_FULL}
|
2015-05-13 02:30:31 +02:00
|
|
|
MACOSX_BUNDLE_INFO_PLIST "${GLFW_SOURCE_DIR}/CMake/MacOSXBundleInfo.plist.in")
|
2012-03-05 22:37:48 +01:00
|
|
|
endif()
|
2010-09-07 17:34:51 +02:00
|
|
|
|