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-12-31 00:32:56 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
|
|
|
|
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")
|
2025-01-09 20:08:48 +00:00
|
|
|
add_subdirectory("examples/raylib-multi-context")
|
2025-01-08 21:08:39 +00:00
|
|
|
# add_subdirectory("examples/cairo-pdf-rendering") Some issue with github actions populating cairo, disable for now
|
2024-11-19 04:03:39 +00:00
|
|
|
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()
|