mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
b6ca47e128
Ported sfml-pi DRM/KMS backend written by @mickelson Port co-authored by @substring Co-authored-by: Andrew Mickelson <andrew.mickelson@gmail.com> Co-authored-by: Gil Delescluse <frog2wah@gmail.com>
44 lines
1.0 KiB
CMake
44 lines
1.0 KiB
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)
|
|
if(NOT SFML_USE_DRM)
|
|
add_subdirectory(X11)
|
|
endif()
|
|
elseif(SFML_OS_MACOSX AND ${CMAKE_GENERATOR} MATCHES "Xcode")
|
|
add_subdirectory(cocoa)
|
|
endif()
|
|
endif()
|
|
if(SFML_BUILD_GRAPHICS AND SFML_BUILD_AUDIO)
|
|
add_subdirectory(tennis)
|
|
endif()
|