2012-03-25 13:53:53 +02:00
|
|
|
|
2015-08-09 15:44:20 +02:00
|
|
|
link_libraries(glfw)
|
2012-03-25 13:53:53 +02:00
|
|
|
|
2019-11-25 19:52:02 +01:00
|
|
|
include_directories("${GLFW_SOURCE_DIR}/deps")
|
2015-08-10 20:19:04 +02:00
|
|
|
|
2017-01-08 15:51:37 +01:00
|
|
|
if (MATH_LIBRARY)
|
2015-10-14 03:11:20 +02:00
|
|
|
link_libraries("${MATH_LIBRARY}")
|
2012-03-25 13:53:53 +02:00
|
|
|
endif()
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2015-12-13 20:01:01 +01:00
|
|
|
if (MSVC)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
endif()
|
|
|
|
|
2015-10-15 16:59:54 +02:00
|
|
|
if (WIN32)
|
|
|
|
set(ICON glfw.rc)
|
|
|
|
elseif (APPLE)
|
|
|
|
set(ICON glfw.icns)
|
|
|
|
endif()
|
|
|
|
|
2019-11-09 18:19:49 +01:00
|
|
|
if (${CMAKE_VERSION} VERSION_EQUAL "3.1.0" OR
|
|
|
|
${CMAKE_VERSION} VERSION_GREATER "3.1.0")
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
else()
|
|
|
|
# Remove this fallback when removing support for CMake version less than 3.1
|
2019-11-10 15:20:29 +01:00
|
|
|
add_compile_options("$<$<C_COMPILER_ID:AppleClang>:-std=c99>"
|
2019-11-09 18:19:49 +01:00
|
|
|
"$<$<C_COMPILER_ID:Clang>:-std=c99>"
|
|
|
|
"$<$<C_COMPILER_ID:GNU>:-std=c99>")
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
2019-04-14 17:34:38 +02:00
|
|
|
set(GLAD_GL "${GLFW_SOURCE_DIR}/deps/glad/gl.h"
|
|
|
|
"${GLFW_SOURCE_DIR}/deps/glad_gl.c")
|
2014-08-11 20:24:16 +02: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 12:44:23 +02:00
|
|
|
|
2019-04-14 17:34:38 +02: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(simple WIN32 MACOSX_BUNDLE simple.c ${ICON} ${GLAD_GL})
|
|
|
|
add_executable(splitview WIN32 MACOSX_BUNDLE splitview.c ${ICON} ${GLAD_GL})
|
|
|
|
add_executable(wave WIN32 MACOSX_BUNDLE wave.c ${ICON} ${GLAD_GL})
|
2015-01-04 23:23:16 +01:00
|
|
|
|
2017-01-08 15:51:37 +01:00
|
|
|
target_link_libraries(particles "${CMAKE_THREAD_LIBS_INIT}")
|
|
|
|
if (RT_LIBRARY)
|
|
|
|
target_link_libraries(particles "${RT_LIBRARY}")
|
|
|
|
endif()
|
2015-03-16 22:39:14 +01:00
|
|
|
|
2019-11-25 19:39:06 +01:00
|
|
|
set(GUI_ONLY_BINARIES boing gears heightmap particles sharing simple splitview
|
|
|
|
wave)
|
2016-11-16 17:04:23 +01:00
|
|
|
set(CONSOLE_BINARIES offscreen)
|
2015-01-04 23:23:16 +01:00
|
|
|
|
2019-11-25 19:39:06 +01:00
|
|
|
set_target_properties(${GUI_ONLY_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
|
2016-11-16 17:04:23 +01:00
|
|
|
FOLDER "GLFW3/Examples")
|
2014-03-06 20:42:47 +01:00
|
|
|
|
2019-12-09 17:04:34 +01:00
|
|
|
if (GLFW_USE_OSMESA)
|
|
|
|
target_compile_definitions(offscreen PRIVATE USE_NATIVE_OSMESA)
|
|
|
|
endif()
|
|
|
|
|
2012-02-29 20:15:39 +01:00
|
|
|
if (MSVC)
|
2012-03-05 23:41:05 +01:00
|
|
|
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
|
2019-11-25 19:39:06 +01:00
|
|
|
set_target_properties(${GUI_ONLY_BINARIES} PROPERTIES
|
2012-03-05 23:41:05 +01:00
|
|
|
LINK_FLAGS "/ENTRY:mainCRTStartup")
|
2012-02-29 20:15:39 +01:00
|
|
|
endif()
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2012-03-05 22:37:48 +01:00
|
|
|
if (APPLE)
|
2015-05-13 02:53:08 +02: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-06 00:32:23 +01:00
|
|
|
set_target_properties(sharing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Sharing")
|
2015-05-13 02:53:08 +02:00
|
|
|
set_target_properties(simple PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Simple")
|
2015-10-15 17:57:38 +02:00
|
|
|
set_target_properties(splitview PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "SplitView")
|
2015-05-13 02:53:08 +02:00
|
|
|
set_target_properties(wave PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Wave")
|
2012-03-05 22:37:48 +01:00
|
|
|
|
2019-12-09 21:59:21 +01:00
|
|
|
set_source_files_properties(glfw.icns PROPERTIES
|
|
|
|
MACOSX_PACKAGE_LOCATION "Resources")
|
2019-11-25 19:39:06 +01:00
|
|
|
set_target_properties(${GUI_ONLY_BINARIES} PROPERTIES
|
2012-03-05 23:41:05 +01:00
|
|
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${GLFW_VERSION}
|
2019-05-08 15:28:18 +02:00
|
|
|
MACOSX_BUNDLE_LONG_VERSION_STRING ${GLFW_VERSION}
|
2015-10-15 16:59:54 +02:00
|
|
|
MACOSX_BUNDLE_ICON_FILE glfw.icns
|
2015-05-13 02:53:08 +02:00
|
|
|
MACOSX_BUNDLE_INFO_PLIST "${GLFW_SOURCE_DIR}/CMake/MacOSXBundleInfo.plist.in")
|
2012-03-05 22:37:48 +01:00
|
|
|
endif()
|
|
|
|
|