clay/CMakeLists.txt

9 lines
241 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 07:33:23 +00:00
if(MSVC)
add_subdirectory("examples/cpp-project-example")
elseif()
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")
endif()