diff options
| author | crupest <crupest@outlook.com> | 2023-10-15 23:16:17 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2023-10-15 23:16:17 +0800 |
| commit | 5d077a761fdb0873d593f7d3b03922bef2efe79a (patch) | |
| tree | 1c6270a49abd1989fb40860233490892b37ca8de /demos | |
| parent | 4786d81aa771b3f0208642715a3d7bcfa254ad57 (diff) | |
| download | cru-5d077a761fdb0873d593f7d3b03922bef2efe79a.tar.gz cru-5d077a761fdb0873d593f7d3b03922bef2efe79a.tar.bz2 cru-5d077a761fdb0873d593f7d3b03922bef2efe79a.zip | |
Fix demo path in cmake. Though I don't expect ci on Windows pass.
Diffstat (limited to 'demos')
| -rw-r--r-- | demos/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/CMakeLists.txt b/demos/CMakeLists.txt index 6e4aa297..30a63e72 100644 --- a/demos/CMakeLists.txt +++ b/demos/CMakeLists.txt @@ -3,7 +3,7 @@ add_library(CruDemoBase INTERFACE) target_link_libraries(CruDemoBase INTERFACE CruPlatformBootstrap) if(WIN32) - add_subdirectory(graphics) + add_subdirectory(Graphics/DrawCircle) add_subdirectory(main) add_subdirectory(ScrollView) @@ -21,7 +21,7 @@ elseif(APPLE) elseif(EMSCRIPTEN) elseif(UNIX) - add_subdirectory(graphics) + add_subdirectory(Graphics/DrawCircle) add_subdirectory(xcb) endif() |
