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

23 lines
No EOL
342 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 ()