aboutsummaryrefslogtreecommitdiff
path: root/demos/CMakeLists.txt
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-09-12 00:42:36 +0800
committerYuqian Yang <crupest@crupest.life>2025-09-12 00:42:36 +0800
commit27f153af927c056af5cec70db5f011752e29b156 (patch)
treecdbe0a61f037cd1641f23f681d221a3206454411 /demos/CMakeLists.txt
parent7c135df9b8057e1de3ea6a73fb785d5622b519d4 (diff)
downloadcru-27f153af927c056af5cec70db5f011752e29b156.tar.gz
cru-27f153af927c056af5cec70db5f011752e29b156.tar.bz2
cru-27f153af927c056af5cec70db5f011752e29b156.zip
Organize bootstrap and graphics demos.
Diffstat (limited to 'demos/CMakeLists.txt')
-rw-r--r--demos/CMakeLists.txt7
1 files changed, 2 insertions, 5 deletions
diff --git a/demos/CMakeLists.txt b/demos/CMakeLists.txt
index 30a63e72..c0a6e268 100644
--- a/demos/CMakeLists.txt
+++ b/demos/CMakeLists.txt
@@ -2,17 +2,15 @@ add_library(CruDemoBase INTERFACE)
target_link_libraries(CruDemoBase INTERFACE CruPlatformBootstrap)
-if(WIN32)
- add_subdirectory(Graphics/DrawCircle)
+add_subdirectory(Graphics)
+if(WIN32)
add_subdirectory(main)
add_subdirectory(ScrollView)
add_subdirectory(InputMethod)
add_subdirectory(SvgPath)
elseif(APPLE)
- add_subdirectory(Graphics/DrawCircle)
-
add_subdirectory(main)
add_subdirectory(ScrollView)
@@ -21,7 +19,6 @@ elseif(APPLE)
elseif(EMSCRIPTEN)
elseif(UNIX)
- add_subdirectory(Graphics/DrawCircle)
add_subdirectory(xcb)
endif()