mirror of
https://github.com/nicbarker/clay.git
synced 2025-01-23 18:06:04 +00:00
12 lines
340 B
CMake
12 lines
340 B
CMake
cmake_minimum_required(VERSION 3.28)
|
|
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")
|
|
endif()
|