You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
72 lines
2.3 KiB
72 lines
2.3 KiB
|
|
set(STATIC_DEPS libglfwStatic ${GLFW_LIBRARIES} ${OPENGL_glu_LIBRARY}) |
|
set(SHARED_DEPS libglfwShared ${GLFW_LIBRARIES} ${OPENGL_glu_LIBRARY}) |
|
|
|
if (UNIX AND NOT APPLE AND NOT CYGWIN) |
|
find_library(MATH_LIBRARY m) |
|
find_library(REALTIME_LIBRARY rt) |
|
link_libraries(${MATH_LIBRARY} ${REALTIME_LIBRARY}) |
|
endif (UNIX AND NOT APPLE AND NOT CYGWIN) |
|
|
|
include_directories(${GLFW_SOURCE_DIR}/include |
|
${GLFW_SOURCE_DIR}/support |
|
${OPENGL_INCLUDE_DIR}) |
|
|
|
add_executable(defaults defaults.c) |
|
target_link_libraries(defaults ${STATIC_DEPS}) |
|
|
|
add_executable(dynamic dynamic.c) |
|
target_link_libraries(dynamic ${SHARED_DEPS}) |
|
|
|
add_executable(events events.c) |
|
target_link_libraries(events ${STATIC_DEPS}) |
|
|
|
add_executable(fsaa fsaa.c getopt.c) |
|
target_link_libraries(fsaa ${STATIC_DEPS}) |
|
|
|
add_executable(fsfocus fsfocus.c) |
|
target_link_libraries(fsfocus ${STATIC_DEPS}) |
|
|
|
add_executable(gamma gamma.c getopt.c) |
|
target_link_libraries(gamma ${STATIC_DEPS}) |
|
|
|
add_executable(glfwinfo glfwinfo.c getopt.c) |
|
target_link_libraries(glfwinfo ${STATIC_DEPS}) |
|
|
|
add_executable(iconify iconify.c getopt.c) |
|
target_link_libraries(iconify ${STATIC_DEPS}) |
|
|
|
add_executable(joysticks joysticks.c) |
|
target_link_libraries(joysticks ${STATIC_DEPS}) |
|
|
|
add_executable(listmodes listmodes.c) |
|
target_link_libraries(listmodes ${STATIC_DEPS}) |
|
|
|
add_executable(peter peter.c) |
|
target_link_libraries(peter ${STATIC_DEPS}) |
|
|
|
add_executable(reopen reopen.c) |
|
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}) |
|
|
|
add_executable(windows WIN32 MACOSX_BUNDLE windows.c) |
|
target_link_libraries(windows ${STATIC_DEPS}) |
|
|
|
set(WINDOWS_BINARIES accuracy sharing tearing windows) |
|
set(CONSOLE_BINARIES defaults events fsaa fsfocus gamma glfwinfo iconify |
|
joysticks listmodes peter reopen) |
|
|
|
if(MSVC) |
|
# Tell MSVC to use main instead of WinMain for Windows subsystem executables |
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES |
|
LINK_FLAGS "/ENTRY:mainCRTStartup") |
|
endif(MSVC) |
|
|
|
|