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
312 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)
2021-09-13 13:47:29 -04:00
add_subdirectory(sdl)
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)
2022-02-18 16:36:48 -05:00
endif()
if(ENABLE_WEB)
add_subdirectory(web)
2020-08-11 12:07:21 -04:00
endif()