mirror of
https://github.com/nicbarker/clay.git
synced 2025-05-12 05:18:03 +00:00
17 lines
428 B
CMake
17 lines
428 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
project(clay)
|
|
|
|
if(APPLE)
|
|
enable_language(OBJC)
|
|
endif()
|
|
|
|
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/sdl3_renderer")
|
|
endif()
|