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