mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
42 lines
951 B
CMake
42 lines
951 B
CMake
# CLI based examples
|
|
if (NOT SFML_OS_IOS)
|
|
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()
|
|
endif()
|
|
|
|
# GUI based examples
|
|
if(SFML_BUILD_WINDOW)
|
|
add_subdirectory(window)
|
|
endif()
|
|
|
|
if(SFML_BUILD_GRAPHICS)
|
|
add_subdirectory(opengl)
|
|
|
|
if (NOT SFML_OS_IOS)
|
|
add_subdirectory(joystick)
|
|
add_subdirectory(shader)
|
|
add_subdirectory(island)
|
|
add_subdirectory(vulkan)
|
|
endif()
|
|
|
|
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)
|
|
endif()
|
|
endif()
|
|
if(SFML_BUILD_GRAPHICS AND SFML_BUILD_AUDIO)
|
|
add_subdirectory(pong)
|
|
endif()
|