diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-09-23 23:23:38 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-09-23 23:23:38 +0800 |
commit | f76b47291ac164ec0169f721dab5b1b0fe016322 (patch) | |
tree | 74a4bdaf8fa977942de92eb7019be666802130ef /demos/platform/gui/CMakeLists.txt | |
parent | fcd9eff000a967e16a0a987609210fba4a92dd0c (diff) | |
download | cru-f76b47291ac164ec0169f721dab5b1b0fe016322.tar.gz cru-f76b47291ac164ec0169f721dab5b1b0fe016322.tar.bz2 cru-f76b47291ac164ec0169f721dab5b1b0fe016322.zip |
Organize platform demo.
Diffstat (limited to 'demos/platform/gui/CMakeLists.txt')
-rw-r--r-- | demos/platform/gui/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/demos/platform/gui/CMakeLists.txt b/demos/platform/gui/CMakeLists.txt new file mode 100644 index 00000000..b179fbc6 --- /dev/null +++ b/demos/platform/gui/CMakeLists.txt @@ -0,0 +1,5 @@ +add_library(CruDemoPlatformGuiBase INTERFACE) +target_link_libraries(CruDemoPlatformGuiBase INTERFACE CruPlatformBootstrap) + +add_executable(CruDemoPlatformGuiEmptyWindow EmptyWindow.cpp) +target_link_libraries(CruDemoPlatformGuiEmptyWindow PRIVATE CruDemoPlatformGuiBase) |