mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
f24ca9a840
* Changed newlines to \n. * Removed whitespace before colons. * Fixed several alignments.
19 lines
434 B
CMake
19 lines
434 B
CMake
|
|
# add the examples subdirectories
|
|
add_subdirectory(ftp)
|
|
add_subdirectory(opengl)
|
|
add_subdirectory(pong)
|
|
add_subdirectory(shader)
|
|
add_subdirectory(sockets)
|
|
add_subdirectory(sound)
|
|
add_subdirectory(sound_capture)
|
|
add_subdirectory(voip)
|
|
add_subdirectory(window)
|
|
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()
|