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
|
|
|
|
2015-08-10 18:19:04 +00:00
|
|
|
include_directories(${glfw_INCLUDE_DIRS})
|
|
|
|
|
2012-03-25 11:53:53 +00:00
|
|
|
if (BUILD_SHARED_LIBS)
|
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()
|
|
|
|
|
2016-11-06 15:34:11 +00:00
|
|
|
if (GLFW_USE_OSMESA)
|
|
|
|
add_definitions(-DUSE_NATIVE_OSMESA)
|
|
|
|
endif()
|
|
|
|
|
2016-02-01 23:54:57 +00:00
|
|
|
include_directories("${GLFW_SOURCE_DIR}/deps")
|
2012-12-27 17:04:24 +00:00
|
|
|
|
2015-10-15 14:59:54 +00:00
|
|
|
if (WIN32)
|
|
|
|
set(ICON glfw.rc)
|
|
|
|
elseif (APPLE)
|
|
|
|
set(ICON glfw.icns)
|
|
|
|
set_source_files_properties(glfw.icns PROPERTIES
|
2016-11-14 22:19:06 +00:00
|
|
|
MACOSX_PACKAGE_LOCATION "Resources")
|
2015-10-15 14:59:54 +00:00
|
|
|
endif()
|
|
|
|
|
2014-08-11 18:24:16 +00:00
|
|
|
set(GLAD "${GLFW_SOURCE_DIR}/deps/glad/glad.h"
|
|
|
|
"${GLFW_SOURCE_DIR}/deps/glad.c")
|
|
|
|
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
|
|
|
|
2015-10-15 14:59:54 +00:00
|
|
|
add_executable(boing WIN32 MACOSX_BUNDLE boing.c ${ICON} ${GLAD})
|
|
|
|
add_executable(gears WIN32 MACOSX_BUNDLE gears.c ${ICON} ${GLAD})
|
|
|
|
add_executable(heightmap WIN32 MACOSX_BUNDLE heightmap.c ${ICON} ${GLAD})
|
2016-11-06 15:34:11 +00:00
|
|
|
add_executable(offscreen offscreen.c ${ICON} ${GLAD})
|
2015-10-15 14:59:54 +00:00
|
|
|
add_executable(particles WIN32 MACOSX_BUNDLE particles.c ${ICON} ${TINYCTHREAD} ${GETOPT} ${GLAD})
|
|
|
|
add_executable(simple WIN32 MACOSX_BUNDLE simple.c ${ICON} ${GLAD})
|
|
|
|
add_executable(splitview WIN32 MACOSX_BUNDLE splitview.c ${ICON} ${GLAD})
|
|
|
|
add_executable(wave WIN32 MACOSX_BUNDLE wave.c ${ICON} ${GLAD})
|
2015-01-04 22:23:16 +00:00
|
|
|
|
2015-05-13 00:53:08 +00:00
|
|
|
target_link_libraries(particles "${CMAKE_THREAD_LIBS_INIT}" "${RT_LIBRARY}")
|
2015-03-16 21:39:14 +00:00
|
|
|
|
2015-05-13 00:53:08 +00:00
|
|
|
set(WINDOWS_BINARIES boing gears heightmap particles simple splitview wave)
|
2016-11-16 16:04:23 +00:00
|
|
|
set(CONSOLE_BINARIES offscreen)
|
2015-01-04 22:23:16 +00:00
|
|
|
|
2016-11-16 16:04:23 +00:00
|
|
|
set_target_properties(${WINDOWS_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
|
|
|
|
FOLDER "GLFW3/Examples")
|
2014-03-06 19:42:47 +00:00
|
|
|
|
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
|
|
|
|
set_target_properties(${WINDOWS_BINARIES} PROPERTIES
|
|
|
|
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")
|
|
|
|
set_target_properties(simple PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Simple")
|
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
|
|
|
|
2015-05-13 00:53:08 +00:00
|
|
|
set_target_properties(${WINDOWS_BINARIES} PROPERTIES
|
2015-10-15 14:59:54 +00:00
|
|
|
RESOURCE glfw.icns
|
2012-03-05 22:41:05 +00:00
|
|
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${GLFW_VERSION}
|
2015-05-13 00:53:08 +00:00
|
|
|
MACOSX_BUNDLE_LONG_VERSION_STRING ${GLFW_VERSION_FULL}
|
2015-10-15 14:59:54 +00:00
|
|
|
MACOSX_BUNDLE_ICON_FILE glfw.icns
|
2015-05-13 00:53:08 +00:00
|
|
|
MACOSX_BUNDLE_INFO_PLIST "${GLFW_SOURCE_DIR}/CMake/MacOSXBundleInfo.plist.in")
|
2012-03-05 21:37:48 +00:00
|
|
|
endif()
|
|
|
|
|