Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/platforms/CMakeLists.txt
2021-09-13 13:47:29 -04:00

19 lines
No EOL
261 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()