2012-03-25 11:53:53 +00:00
|
|
|
|
2015-08-09 13:44:20 +00:00
|
|
|
link_libraries(glfw)
|
2012-03-25 11:53:53 +00:00
|
|
|
|
2019-11-25 18:52:02 +00:00
|
|
|
include_directories("${GLFW_SOURCE_DIR}/deps")
|
2015-08-10 18:19:04 +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-15 14:59:54 +00:00
|
|
|
if (WIN32)
|
|
|
|
set(ICON glfw.rc)
|
|
|
|
elseif (APPLE)
|
|
|
|
set(ICON glfw.icns)
|
|
|
|
endif()
|
|
|
|
|
2019-04-14 15:34:38 +00:00
|
|
|
set(GLAD_GL "${GLFW_SOURCE_DIR}/deps/glad/gl.h"
|
|
|
|
"${GLFW_SOURCE_DIR}/deps/glad_gl.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
|
|
|
|
2019-04-14 15:34:38 +00:00
|
|
|
add_executable(boing WIN32 MACOSX_BUNDLE boing.c ${ICON} ${GLAD_GL})
|
|
|
|
add_executable(gears WIN32 MACOSX_BUNDLE gears.c ${ICON} ${GLAD_GL})
|
|
|
|
add_executable(heightmap WIN32 MACOSX_BUNDLE heightmap.c ${ICON} ${GLAD_GL})
|
|
|
|
add_executable(offscreen offscreen.c ${ICON} ${GLAD_GL})
|
|
|
|
add_executable(particles WIN32 MACOSX_BUNDLE particles.c ${ICON} ${TINYCTHREAD} ${GETOPT} ${GLAD_GL})
|
|
|
|
add_executable(sharing WIN32 MACOSX_BUNDLE sharing.c ${ICON} ${GLAD_GL})
|
|
|
|
add_executable(splitview WIN32 MACOSX_BUNDLE splitview.c ${ICON} ${GLAD_GL})
|
2019-05-19 17:46:22 +00:00
|
|
|
add_executable(triangle-opengl WIN32 MACOSX_BUNDLE triangle-opengl.c ${ICON} ${GLAD_GL})
|
2019-04-14 15:34:38 +00:00
|
|
|
add_executable(wave WIN32 MACOSX_BUNDLE wave.c ${ICON} ${GLAD_GL})
|
2015-01-04 22:23:16 +00:00
|
|
|
|
2019-12-15 08:53:18 +00:00
|
|
|
target_link_libraries(particles Threads::Threads)
|
2017-01-08 14:51:37 +00:00
|
|
|
if (RT_LIBRARY)
|
|
|
|
target_link_libraries(particles "${RT_LIBRARY}")
|
|
|
|
endif()
|
2015-03-16 21:39:14 +00:00
|
|
|
|
2019-11-25 18:39:06 +00:00
|
|
|
set(GUI_ONLY_BINARIES boing gears heightmap particles sharing splitview
|
|
|
|
triangle-opengl wave)
|
2016-11-16 16:04:23 +00:00
|
|
|
set(CONSOLE_BINARIES offscreen)
|
2015-01-04 22:23:16 +00:00
|
|
|
|
2019-11-25 18:39:06 +00:00
|
|
|
set_target_properties(${GUI_ONLY_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
|
2019-11-26 17:09:22 +00:00
|
|
|
C_STANDARD 99
|
2016-11-16 16:04:23 +00:00
|
|
|
FOLDER "GLFW3/Examples")
|
2014-03-06 19:42:47 +00:00
|
|
|
|
2019-12-09 16:04:34 +00:00
|
|
|
if (GLFW_USE_OSMESA)
|
|
|
|
target_compile_definitions(offscreen PRIVATE USE_NATIVE_OSMESA)
|
|
|
|
endif()
|
|
|
|
|
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
|
2019-11-25 18:39:06 +00:00
|
|
|
set_target_properties(${GUI_ONLY_BINARIES} PROPERTIES
|
2012-03-05 22:41:05 +00:00
|
|
|
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-05-13 00:53:08 +00:00
|
|
|
set_target_properties(boing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Boing")
|
|
|
|
set_target_properties(gears PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Gears")
|
|
|
|
set_target_properties(heightmap PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Heightmap")
|
|
|
|
set_target_properties(particles PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Particles")
|
2017-11-05 23:32:23 +00:00
|
|
|
set_target_properties(sharing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Sharing")
|
2019-05-19 17:46:22 +00:00
|
|
|
set_target_properties(triangle-opengl PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "OpenGL Triangle")
|
2015-10-15 15:57:38 +00:00
|
|
|
set_target_properties(splitview PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "SplitView")
|
2015-05-13 00:53:08 +00:00
|
|
|
set_target_properties(wave PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Wave")
|
2012-03-05 21:37:48 +00:00
|
|
|
|
2019-12-09 20:59:21 +00:00
|
|
|
set_source_files_properties(glfw.icns PROPERTIES
|
|
|
|
MACOSX_PACKAGE_LOCATION "Resources")
|
2019-11-25 18:39:06 +00:00
|
|
|
set_target_properties(${GUI_ONLY_BINARIES} PROPERTIES
|
2012-03-05 22:41:05 +00:00
|
|
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${GLFW_VERSION}
|
2019-05-08 13:28:18 +00:00
|
|
|
MACOSX_BUNDLE_LONG_VERSION_STRING ${GLFW_VERSION}
|
2015-10-15 14:59:54 +00:00
|
|
|
MACOSX_BUNDLE_ICON_FILE glfw.icns
|
2019-12-03 21:03:36 +00:00
|
|
|
MACOSX_BUNDLE_INFO_PLIST "${GLFW_SOURCE_DIR}/CMake/Info.plist.in")
|
2012-03-05 21:37:48 +00:00
|
|
|
endif()
|
|
|
|
|