1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00
glfw/tests/CMakeLists.txt

75 lines
2.8 KiB
CMake
Raw Normal View History

2010-09-07 11:34:51 -04:00
2015-01-25 17:35:54 -05:00
link_libraries(glfw)
if (BUILD_SHARED_LIBS)
2012-03-25 07:58:07 -04:00
add_definitions(-DGLFW_DLL)
2014-08-14 19:10:07 -04:00
link_libraries("${OPENGL_gl_LIBRARY}" "${MATH_LIBRARY}")
else()
2012-03-25 11:05:00 -04:00
link_libraries(${glfw_LIBRARIES})
endif()
2010-09-07 11:34:51 -04:00
include_directories("${GLFW_SOURCE_DIR}/include"
"${GLFW_SOURCE_DIR}/deps")
2014-08-14 19:10:07 -04:00
if ("${OPENGL_INCLUDE_DIR}")
include_directories("${OPENGL_INCLUDE_DIR}")
endif()
2010-09-07 11:34:51 -04: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")
add_executable(clipboard clipboard.c ${GETOPT})
add_executable(events events.c ${GETOPT})
2015-05-19 09:16:42 -04:00
add_executable(msaa msaa.c ${GETOPT})
add_executable(gamma gamma.c ${GETOPT})
add_executable(glfwinfo glfwinfo.c ${GETOPT})
add_executable(iconify iconify.c ${GETOPT})
2010-09-07 11:34:51 -04:00
add_executable(joysticks joysticks.c)
2015-01-25 17:37:29 -05:00
add_executable(monitors monitors.c ${GETOPT})
2010-09-07 11:34:51 -04:00
add_executable(reopen reopen.c)
add_executable(cursor cursor.c)
2014-03-09 12:18:39 -04:00
add_executable(empty WIN32 MACOSX_BUNDLE empty.c ${TINYCTHREAD})
set_target_properties(empty PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Empty Event")
2011-11-02 12:59:18 -04:00
add_executable(sharing WIN32 MACOSX_BUNDLE sharing.c)
set_target_properties(sharing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Sharing")
2010-09-07 11:34:51 -04:00
add_executable(tearing WIN32 MACOSX_BUNDLE tearing.c ${GETOPT})
set_target_properties(tearing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Tearing")
2010-09-07 11:34:51 -04:00
2012-08-13 13:52:49 -04:00
add_executable(threads WIN32 MACOSX_BUNDLE threads.c ${TINYCTHREAD})
set_target_properties(threads PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Threads")
2012-02-02 10:04:37 -05:00
add_executable(title WIN32 MACOSX_BUNDLE title.c)
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)
set_target_properties(windows PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Windows")
2010-09-07 11:34:51 -04:00
target_link_libraries(empty "${CMAKE_THREAD_LIBS_INIT}" "${RT_LIBRARY}")
target_link_libraries(threads "${CMAKE_THREAD_LIBS_INIT}" "${RT_LIBRARY}")
2012-08-13 13:52:49 -04:00
set(WINDOWS_BINARIES empty sharing tearing threads title windows)
2015-07-01 08:49:22 -04:00
set(CONSOLE_BINARIES clipboard events msaa gamma glfwinfo
iconify joysticks monitors reopen cursor)
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
FOLDER "GLFW3/Tests")
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
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}
2015-05-12 20:30:31 -04:00
MACOSX_BUNDLE_INFO_PLIST "${GLFW_SOURCE_DIR}/CMake/MacOSXBundleInfo.plist.in")
endif()
2010-09-07 11:34:51 -04:00