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