mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-19 04:38:01 +00:00
12 lines
265 B
CMake
12 lines
265 B
CMake
cmake_minimum_required(VERSION 3.28)
|
|
|
|
if (MSVC)
|
|
project(clay CXX)
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
else ()
|
|
project(clay C)
|
|
set(CMAKE_C_STANDARD 99)
|
|
endif()
|
|
|
|
add_subdirectory("examples/raylib-sidebar-scrolling-container")
|
|
add_subdirectory("examples/clay-official-website") |