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
342 B
Text
Raw Permalink Normal View History

2022-08-15 11:09:43 -04:00
if (ENABLE_WINDOWS)
add_subdirectory(sdl)
endif ()
2020-08-11 12:07:21 -04:00
2022-08-15 11:09:43 -04:00
if (ENABLE_LINUX)
add_subdirectory(sdl)
endif ()
2020-08-11 12:07:21 -04:00
2022-08-15 11:09:43 -04:00
if (ENABLE_MACOS)
add_subdirectory(sdl)
endif ()
2021-03-01 14:40:02 -05:00
2022-08-15 11:09:43 -04:00
if (ENABLE_IOS)
add_subdirectory(ios)
endif ()
2021-03-01 14:40:02 -05:00
2022-08-15 11:09:43 -04:00
if (ENABLE_TVOS)
add_subdirectory(tvos)
endif ()
2022-02-18 16:36:48 -05:00
2022-08-15 11:09:43 -04:00
if (ENABLE_WEB)
add_subdirectory(web)
endif ()