2012-03-25 13:53:53 +02:00
|
|
|
|
2014-08-11 20:24:16 +02:00
|
|
|
link_libraries(glfw "${OPENGL_glu_LIBRARY}")
|
2012-03-25 13:53:53 +02:00
|
|
|
|
|
|
|
if (BUILD_SHARED_LIBS)
|
2012-03-25 13:58:07 +02:00
|
|
|
add_definitions(-DGLFW_DLL)
|
2014-08-11 20:24:16 +02:00
|
|
|
link_libraries("${OPENGL_gl_LIBRARY}" "${MATH_LIBRARY}")
|
2012-03-25 13:53:53 +02:00
|
|
|
else()
|
2012-03-25 17:05:00 +02:00
|
|
|
link_libraries(${glfw_LIBRARIES})
|
2012-03-25 13:53:53 +02:00
|
|
|
endif()
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2014-08-11 20:24:16 +02:00
|
|
|
include_directories("${GLFW_SOURCE_DIR}/include"
|
|
|
|
"${GLFW_SOURCE_DIR}/deps")
|
2012-12-27 18:04:24 +01:00
|
|
|
|
|
|
|
if (NOT APPLE)
|
|
|
|
# HACK: This is NOTFOUND on OS X 10.8
|
2014-08-11 20:24:16 +02:00
|
|
|
include_directories("${OPENGL_INCLUDE_DIR}")
|
2012-12-27 18:04:24 +01:00
|
|
|
endif()
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2014-08-11 20:24:16 +02: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 12:44:23 +02:00
|
|
|
|
2012-02-29 20:15:39 +01:00
|
|
|
if (APPLE)
|
2012-03-05 23:41:05 +01:00
|
|
|
# Set fancy names for bundles
|
|
|
|
add_executable(Boing MACOSX_BUNDLE boing.c)
|
|
|
|
add_executable(Gears MACOSX_BUNDLE gears.c)
|
2014-01-11 19:37:33 +01:00
|
|
|
add_executable(Particles MACOSX_BUNDLE particles.c ${TINYCTHREAD})
|
2013-02-28 21:15:04 +01:00
|
|
|
add_executable(Simple MACOSX_BUNDLE simple.c)
|
2012-03-05 23:41:05 +01:00
|
|
|
add_executable("Split View" MACOSX_BUNDLE splitview.c)
|
|
|
|
add_executable(Wave MACOSX_BUNDLE wave.c)
|
|
|
|
|
|
|
|
set_target_properties(Boing PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Boing")
|
|
|
|
set_target_properties(Gears PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Gears")
|
2014-01-11 19:37:33 +01:00
|
|
|
set_target_properties(Particles PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Particles")
|
2013-02-28 21:15:04 +01:00
|
|
|
set_target_properties(Simple PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Simple")
|
2012-03-05 23:41:05 +01:00
|
|
|
set_target_properties("Split View" PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Split View")
|
|
|
|
set_target_properties(Wave PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "Wave")
|
2012-02-29 20:15:39 +01:00
|
|
|
else()
|
2012-03-05 23:41:05 +01:00
|
|
|
# Set boring names for executables
|
|
|
|
add_executable(boing WIN32 boing.c)
|
|
|
|
add_executable(gears WIN32 gears.c)
|
2014-01-12 01:59:06 +01:00
|
|
|
add_executable(heightmap WIN32 heightmap.c ${GETOPT} ${GLAD})
|
2014-01-11 20:39:53 +01:00
|
|
|
add_executable(particles WIN32 particles.c ${TINYCTHREAD} ${GETOPT})
|
2013-02-28 21:15:04 +01:00
|
|
|
add_executable(simple WIN32 simple.c)
|
2012-03-05 23:41:05 +01:00
|
|
|
add_executable(splitview WIN32 splitview.c)
|
|
|
|
add_executable(wave WIN32 wave.c)
|
2012-02-29 20:15:39 +01:00
|
|
|
endif()
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2014-03-07 00:18:54 +01:00
|
|
|
if (APPLE)
|
2014-08-11 20:24:16 +02:00
|
|
|
target_link_libraries(Particles "${CMAKE_THREAD_LIBS_INIT}")
|
2014-03-07 00:18:54 +01:00
|
|
|
elseif (UNIX)
|
2014-08-11 20:24:16 +02:00
|
|
|
target_link_libraries(particles "${CMAKE_THREAD_LIBS_INIT}" "${RT_LIBRARY}")
|
2014-03-07 00:18:54 +01:00
|
|
|
endif()
|
2014-03-06 20:42:47 +01:00
|
|
|
|
2012-02-29 20:15:39 +01:00
|
|
|
if (MSVC)
|
2014-01-11 19:37:33 +01:00
|
|
|
set(WINDOWS_BINARIES boing gears heightmap particles simple splitview wave)
|
2012-03-05 22:37:48 +01:00
|
|
|
|
2012-03-05 23:41:05 +01: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 20:15:39 +01:00
|
|
|
endif()
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2012-03-05 22:37:48 +01:00
|
|
|
if (APPLE)
|
2014-01-11 19:37:33 +01:00
|
|
|
set(BUNDLE_BINARIES Boing Gears Particles Simple "Split View" Wave)
|
2012-03-05 22:37:48 +01:00
|
|
|
|
2012-03-05 23:41:05 +01:00
|
|
|
set_target_properties(${BUNDLE_BINARIES} PROPERTIES
|
|
|
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${GLFW_VERSION}
|
|
|
|
MACOSX_BUNDLE_LONG_VERSION_STRING ${GLFW_VERSION_FULL})
|
2012-03-05 22:37:48 +01:00
|
|
|
endif()
|
|
|
|
|