2010-09-07 15:34:51 +00:00
|
|
|
# This line is used to link with static libraries
|
|
|
|
# Note that the library list should be updated to be obtained from
|
|
|
|
# the main CMakeLists.txt
|
|
|
|
link_libraries(libglfwStatic ${GLFW_LIBRARIES} ${OPENGL_glu_LIBRARY})
|
|
|
|
|
2011-09-06 12:33:25 +00:00
|
|
|
include_directories(${GLFW_SOURCE_DIR}/include
|
|
|
|
${GLFW_SOURCE_DIR}/support
|
|
|
|
${OPENGL_INCLUDE_DIR})
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-02-29 19:15:39 +00:00
|
|
|
if (APPLE)
|
2010-09-07 15:34:51 +00:00
|
|
|
# Set fancy names for bundles
|
|
|
|
add_executable(Boing MACOSX_BUNDLE boing.c)
|
|
|
|
add_executable(Gears MACOSX_BUNDLE gears.c)
|
|
|
|
add_executable("Split View" MACOSX_BUNDLE splitview.c)
|
|
|
|
add_executable(Triangle MACOSX_BUNDLE triangle.c)
|
|
|
|
add_executable(Wave MACOSX_BUNDLE wave.c)
|
2012-02-29 19:15:39 +00:00
|
|
|
else()
|
2010-09-07 15:34:51 +00:00
|
|
|
# Set boring names for executables
|
|
|
|
add_executable(boing WIN32 boing.c)
|
|
|
|
add_executable(gears WIN32 gears.c)
|
2010-10-03 17:05:41 +00:00
|
|
|
add_executable(heightmap WIN32 heightmap.c getopt.c)
|
2010-09-07 15:34:51 +00:00
|
|
|
add_executable(splitview WIN32 splitview.c)
|
|
|
|
add_executable(triangle WIN32 triangle.c)
|
|
|
|
add_executable(wave WIN32 wave.c)
|
2012-02-29 19:15:39 +00:00
|
|
|
endif()
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-25 17:13:40 +00:00
|
|
|
set(WINDOWS_BINARIES boing gears heightmap splitview triangle wave)
|
2010-09-20 20:37:22 +00:00
|
|
|
|
2012-02-29 19:15:39 +00:00
|
|
|
if (MSVC)
|
2010-09-07 15:34:51 +00:00
|
|
|
# Tell MSVC to use main instead of WinMain for Windows subsystem executables
|
2010-10-04 19:21:50 +00:00
|
|
|
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
|
|
|
|