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
|
|
|
|
2016-11-17 13:22:27 +00:00
|
|
|
include_directories(${glfw_INCLUDE_DIRS} "${GLFW_SOURCE_DIR}/deps")
|
2016-11-16 22:05:47 +00:00
|
|
|
|
2017-01-08 14:51:37 +00:00
|
|
|
if (MATH_LIBRARY)
|
2015-10-14 01:11:20 +00:00
|
|
|
link_libraries("${MATH_LIBRARY}")
|
2012-03-25 11:53:53 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2015-12-13 19:01:01 +00:00
|
|
|
if (MSVC)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
endif()
|
|
|
|
|
2015-10-14 01:11:20 +00:00
|
|
|
set(GLAD "${GLFW_SOURCE_DIR}/deps/glad/glad.h"
|
|
|
|
"${GLFW_SOURCE_DIR}/deps/glad.c")
|
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
|
|
|
|
2015-10-14 01:11:20 +00:00
|
|
|
add_executable(clipboard clipboard.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(events events.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(msaa msaa.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(glfwinfo glfwinfo.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(iconify iconify.c ${GETOPT} ${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-09-26 12:57:03 +00:00
|
|
|
add_executable(gamma WIN32 MACOSX_BUNDLE gamma.c ${GLAD})
|
2016-03-11 10:50:37 +00:00
|
|
|
add_executable(icon WIN32 MACOSX_BUNDLE icon.c ${GLAD})
|
2016-09-26 22:50:32 +00:00
|
|
|
add_executable(joysticks WIN32 MACOSX_BUNDLE joysticks.c ${GLAD})
|
2016-09-21 16:12:36 +00:00
|
|
|
add_executable(sharing WIN32 MACOSX_BUNDLE sharing.c ${GETOPT} ${GLAD})
|
2015-10-14 01:11:20 +00:00
|
|
|
add_executable(tearing WIN32 MACOSX_BUNDLE tearing.c ${GETOPT} ${GLAD})
|
|
|
|
add_executable(threads WIN32 MACOSX_BUNDLE threads.c ${TINYCTHREAD} ${GLAD})
|
2016-03-16 10:16:06 +00:00
|
|
|
add_executable(timeout WIN32 MACOSX_BUNDLE timeout.c ${GLAD})
|
2015-10-14 01:11:20 +00:00
|
|
|
add_executable(title WIN32 MACOSX_BUNDLE title.c ${GLAD})
|
2016-03-07 12:31:23 +00:00
|
|
|
add_executable(windows WIN32 MACOSX_BUNDLE windows.c ${GETOPT} ${GLAD})
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2017-01-08 14:51:37 +00:00
|
|
|
target_link_libraries(empty "${CMAKE_THREAD_LIBS_INIT}")
|
|
|
|
target_link_libraries(threads "${CMAKE_THREAD_LIBS_INIT}")
|
|
|
|
if (RT_LIBRARY)
|
|
|
|
target_link_libraries(empty "${RT_LIBRARY}")
|
|
|
|
target_link_libraries(threads "${RT_LIBRARY}")
|
|
|
|
endif()
|
2012-08-13 17:52:49 +00:00
|
|
|
|
2016-09-26 22:50:32 +00:00
|
|
|
set(WINDOWS_BINARIES empty gamma icon joysticks sharing tearing threads timeout
|
|
|
|
title windows)
|
|
|
|
set(CONSOLE_BINARIES clipboard events msaa glfwinfo iconify monitors reopen
|
|
|
|
cursor)
|
2010-09-20 20:37:22 +00:00
|
|
|
|
2015-08-10 18:19:04 +00:00
|
|
|
if (VULKAN_FOUND)
|
|
|
|
add_executable(vulkan WIN32 vulkan.c ${ICON})
|
|
|
|
target_include_directories(vulkan PRIVATE "${VULKAN_INCLUDE_DIR}")
|
2016-08-04 22:23:16 +00:00
|
|
|
if (NOT GLFW_VULKAN_STATIC)
|
2016-10-13 23:46:56 +00:00
|
|
|
target_link_libraries(vulkan "${VULKAN_LIBRARY}" ${GLFW_VULKAN_DEPS})
|
2016-08-04 22:23:16 +00:00
|
|
|
endif()
|
2015-08-10 18:19:04 +00:00
|
|
|
list(APPEND WINDOWS_BINARIES vulkan)
|
|
|
|
endif()
|
|
|
|
|
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)
|
2015-10-25 02:56:43 +00:00
|
|
|
set_target_properties(empty PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Empty Event")
|
2016-09-26 12:57:03 +00:00
|
|
|
set_target_properties(gamma PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Gamma")
|
2016-09-26 22:50:32 +00:00
|
|
|
set_target_properties(joysticks PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Joysticks")
|
2015-10-25 02:56:43 +00:00
|
|
|
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 10:16:06 +00:00
|
|
|
set_target_properties(timeout PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Timeout")
|
2015-10-25 02:56:43 +00:00
|
|
|
set_target_properties(title PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Title")
|
|
|
|
set_target_properties(windows PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Windows")
|
|
|
|
|
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
|
|
|
|