2014-09-30 22:07:25 +08:00
|
|
|
|
2018-02-28 04:17:08 +08:00
|
|
|
|
2018-04-12 03:45:36 +08:00
|
|
|
# CLI based examples
|
|
|
|
if (NOT SFML_OS_IOS)
|
2018-02-28 04:17:08 +08:00
|
|
|
if(SFML_BUILD_NETWORK)
|
|
|
|
add_subdirectory(ftp)
|
|
|
|
add_subdirectory(sockets)
|
|
|
|
endif()
|
|
|
|
if(SFML_BUILD_NETWORK AND SFML_BUILD_AUDIO)
|
|
|
|
add_subdirectory(voip)
|
|
|
|
endif()
|
|
|
|
if(SFML_BUILD_AUDIO)
|
|
|
|
add_subdirectory(sound)
|
|
|
|
add_subdirectory(sound_capture)
|
|
|
|
endif()
|
2018-04-12 03:45:36 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# GUI based examples
|
|
|
|
if(SFML_BUILD_WINDOW)
|
|
|
|
add_subdirectory(window)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(SFML_BUILD_GRAPHICS)
|
|
|
|
add_subdirectory(opengl)
|
|
|
|
if (NOT SFML_OS_IOS)
|
2018-02-03 20:08:44 +08:00
|
|
|
add_subdirectory(joystick)
|
2018-02-28 04:17:08 +08:00
|
|
|
add_subdirectory(shader)
|
|
|
|
endif()
|
2018-04-12 03:45:36 +08:00
|
|
|
add_subdirectory(island)
|
|
|
|
if(SFML_OS_WINDOWS)
|
|
|
|
add_subdirectory(win32)
|
|
|
|
elseif(SFML_OS_LINUX OR SFML_OS_FREEBSD)
|
|
|
|
add_subdirectory(X11)
|
|
|
|
elseif(SFML_OS_MACOSX)
|
|
|
|
add_subdirectory(cocoa)
|
2015-02-21 21:46:46 +08:00
|
|
|
endif()
|
2018-04-12 03:45:36 +08:00
|
|
|
endif()
|
|
|
|
if(SFML_BUILD_GRAPHICS AND SFML_BUILD_AUDIO)
|
|
|
|
add_subdirectory(pong)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Mobile specific examples
|
|
|
|
if(SFML_OS_IOS)
|
|
|
|
add_subdirectory(iOS)
|
|
|
|
endif()
|