clay/CMakeLists.txt

12 lines
340 B
CMake
Raw Normal View History

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")
endif()