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

19 lines
261 B
Text
Raw Normal View History

2020-08-11 12:07:21 -04:00
if(ENABLE_WINDOWS)
add_subdirectory(sdl)
2020-08-11 12:07:21 -04:00
endif()
if(ENABLE_LINUX)
2021-03-01 14:40:02 -05:00
add_subdirectory(sdl)
2020-08-11 12:07:21 -04:00
endif()
if(ENABLE_MACOS)
add_subdirectory(mac)
2021-03-01 14:40:02 -05:00
endif()
2020-08-11 12:07:21 -04:00
if(ENABLE_IOS)
add_subdirectory(ios)
2021-03-01 14:40:02 -05:00
endif()
2020-08-11 12:07:21 -04:00
if(ENABLE_TVOS)
add_subdirectory(tvos)
endif()