mirror of
https://github.com/nicbarker/clay.git
synced 2025-01-23 18:06:04 +00:00
13 lines
399 B
CMake
13 lines
399 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
project(clay)
|
|
|
|
add_subdirectory("examples/cpp-project-example")
|
|
|
|
# Don't try to compile C99 projects using MSVC
|
|
if(NOT MSVC)
|
|
add_subdirectory("examples/raylib-sidebar-scrolling-container")
|
|
add_subdirectory("examples/cairo-pdf-rendering")
|
|
add_subdirectory("examples/clay-official-website")
|
|
add_subdirectory("examples/introducing-clay-video-demo")
|
|
endif()
|