2024-11-26 23:13:11 +00:00
|
|
|
cmake_minimum_required(VERSION 3.27)
|
2024-09-28 23:53:46 +00:00
|
|
|
project(clay)
|
2024-08-23 04:05:23 +00:00
|
|
|
|
2024-09-28 23:53:46 +00:00
|
|
|
add_subdirectory("examples/cpp-project-example")
|
2024-08-23 04:05:23 +00:00
|
|
|
|
2024-09-28 23:53:46 +00:00
|
|
|
# Don't try to compile C99 projects using MSVC
|
|
|
|
if(NOT MSVC)
|
2024-11-19 04:03:39 +00:00
|
|
|
add_subdirectory("examples/raylib-sidebar-scrolling-container")
|
|
|
|
add_subdirectory("examples/cairo-pdf-rendering")
|
|
|
|
add_subdirectory("examples/clay-official-website")
|
2024-12-26 21:52:12 +00:00
|
|
|
add_subdirectory("examples/introducing-clay-video-demo")
|
2024-12-28 06:15:22 +00:00
|
|
|
add_subdirectory("examples/SDL2-video-demo")
|
2024-11-19 04:03:39 +00:00
|
|
|
endif()
|