mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-20 05:08:04 +00:00
9 lines
240 B
CMake
9 lines
240 B
CMake
cmake_minimum_required(VERSION 3.28)
|
|
project(clay)
|
|
|
|
if(!MSVC)
|
|
add_subdirectory("examples/raylib-sidebar-scrolling-container")
|
|
add_subdirectory("examples/clay-official-website")
|
|
else()
|
|
add_subdirectory("examples/cpp-project-example")
|
|
endif() |