mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 09:01:46 +00:00
67 lines
2.1 KiB
CMake
67 lines
2.1 KiB
CMake
|
|
set(STATIC_DEPS libglfwStatic ${GLFW_LIBRARIES} ${OPENGL_glu_LIBRARY})
|
|
set(SHARED_DEPS libglfwShared ${GLFW_LIBRARIES} ${OPENGL_glu_LIBRARY})
|
|
|
|
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)
|
|
|