23 lines
No EOL
312 B
CMake
Executable file
23 lines
No EOL
312 B
CMake
Executable file
if(ENABLE_WINDOWS)
|
|
add_subdirectory(sdl)
|
|
endif()
|
|
|
|
if(ENABLE_LINUX)
|
|
add_subdirectory(sdl)
|
|
endif()
|
|
|
|
if(ENABLE_MACOS)
|
|
add_subdirectory(sdl)
|
|
endif()
|
|
|
|
if(ENABLE_IOS)
|
|
add_subdirectory(ios)
|
|
endif()
|
|
|
|
if(ENABLE_TVOS)
|
|
add_subdirectory(tvos)
|
|
endif()
|
|
|
|
if(ENABLE_WEB)
|
|
add_subdirectory(web)
|
|
endif() |