glfw/tests/CMakeLists.txt

70 lines
2.2 KiB
CMake
Raw Normal View History

2010-09-07 15:34:51 +00:00
2011-11-02 16:59:18 +00:00
set(STATIC_DEPS libglfwStatic ${GLFW_LIBRARIES} ${OPENGL_glu_LIBRARY})
set(SHARED_DEPS libglfwShared ${GLFW_LIBRARIES} ${OPENGL_glu_LIBRARY})
2010-09-07 15:34:51 +00:00
include_directories(${GLFW_SOURCE_DIR}/include
${GLFW_SOURCE_DIR}/support
${OPENGL_INCLUDE_DIR})
2010-09-07 15:34:51 +00:00
add_executable(defaults defaults.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(defaults ${STATIC_DEPS})
add_executable(dynamic dynamic.c)
target_link_libraries(dynamic ${SHARED_DEPS})
2010-09-07 15:34:51 +00:00
add_executable(events events.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(events ${STATIC_DEPS})
add_executable(fsaa fsaa.c getopt.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(fsaa ${STATIC_DEPS})
2010-09-18 16:28:14 +00:00
add_executable(fsfocus fsfocus.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(fsfocus ${STATIC_DEPS})
add_executable(gamma gamma.c getopt.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(gamma ${STATIC_DEPS})
2011-10-08 22:01:44 +00:00
add_executable(glfwinfo glfwinfo.c getopt.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(glfwinfo ${STATIC_DEPS})
2010-09-13 23:04:33 +00:00
add_executable(iconify iconify.c getopt.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(iconify ${STATIC_DEPS})
2010-09-07 15:34:51 +00:00
add_executable(joysticks joysticks.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(joysticks ${STATIC_DEPS})
add_executable(listmodes listmodes.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(listmodes ${STATIC_DEPS})
2010-09-07 15:34:51 +00:00
add_executable(peter peter.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(peter ${STATIC_DEPS})
2010-09-07 15:34:51 +00:00
add_executable(reopen reopen.c)
2011-11-02 16:59:18 +00:00
target_link_libraries(reopen ${STATIC_DEPS})
add_executable(accuracy WIN32 MACOSX_BUNDLE accuracy.c)
target_link_libraries(accuracy ${STATIC_DEPS})
add_executable(sharing WIN32 MACOSX_BUNDLE sharing.c)
target_link_libraries(sharing ${STATIC_DEPS})
add_executable(tearing WIN32 MACOSX_BUNDLE tearing.c)
target_link_libraries(tearing ${STATIC_DEPS})
2010-09-07 15:34:51 +00:00
2012-02-02 15:04:37 +00:00
add_executable(title WIN32 MACOSX_BUNDLE title.c)
target_link_libraries(title ${STATIC_DEPS})
2011-11-02 16:59:18 +00:00
add_executable(windows WIN32 MACOSX_BUNDLE windows.c)
target_link_libraries(windows ${STATIC_DEPS})
2010-09-07 15:34:51 +00:00
2012-02-02 15:04:37 +00:00
set(WINDOWS_BINARIES accuracy sharing tearing title windows)
2011-10-08 22:01:44 +00:00
set(CONSOLE_BINARIES defaults events fsaa fsfocus gamma glfwinfo iconify
joysticks listmodes peter reopen)
2012-02-29 19:15:39 +00:00
if (MSVC)
2010-09-07 15:34:51 +00:00
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
2010-10-04 19:21:50 +00:00
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