From e9e55000778231e92cae3e7cb2f70da7b0fc3cd2 Mon Sep 17 00:00:00 2001 From: Nic Barker Date: Sat, 28 Sep 2024 21:53:42 +1200 Subject: [PATCH] build projects on other platforms --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9bbe6d11..6adf9f9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,9 +1,9 @@ cmake_minimum_required(VERSION 3.28) project(clay) -if(!MSVC) +add_subdirectory("examples/cpp-project-example") + +if(NOT MSVC) add_subdirectory("examples/raylib-sidebar-scrolling-container") add_subdirectory("examples/clay-official-website") -else() -add_subdirectory("examples/cpp-project-example") endif() \ No newline at end of file