clay/CMakeLists.txt

9 lines
240 B
CMake
Raw Normal View History

2024-08-23 04:05:23 +00:00
cmake_minimum_required(VERSION 3.28)
2024-09-28 07:33:23 +00:00
project(clay)
2024-08-23 04:05:23 +00:00
2024-09-28 08:54:41 +00:00
if(!MSVC)
2024-08-23 04:05:23 +00:00
add_subdirectory("examples/raylib-sidebar-scrolling-container")
2024-09-28 07:33:23 +00:00
add_subdirectory("examples/clay-official-website")
2024-09-28 08:54:41 +00:00
else()
add_subdirectory("examples/cpp-project-example")
2024-09-28 07:33:23 +00:00
endif()