diff options
| author | Yuqian Yang <crupest@crupest.life> | 2025-09-30 00:16:13 +0800 |
|---|---|---|
| committer | Yuqian Yang <crupest@crupest.life> | 2025-09-30 00:16:13 +0800 |
| commit | 35ba6a2f719327e2ee3f31d5baa04f0ec5a0a09e (patch) | |
| tree | 92db6b8b40d409a4faf06c3600111eec200f4775 /demos/CMakeLists.txt | |
| parent | 5862307366f4b7db492f1630bdf21ce240d8dd6c (diff) | |
| download | cru-35ba6a2f719327e2ee3f31d5baa04f0ec5a0a09e.tar.gz cru-35ba6a2f719327e2ee3f31d5baa04f0ec5a0a09e.tar.bz2 cru-35ba6a2f719327e2ee3f31d5baa04f0ec5a0a09e.zip | |
Impl input method for xim.
Diffstat (limited to 'demos/CMakeLists.txt')
| -rw-r--r-- | demos/CMakeLists.txt | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/demos/CMakeLists.txt b/demos/CMakeLists.txt index 46eda9c4..42335013 100644 --- a/demos/CMakeLists.txt +++ b/demos/CMakeLists.txt @@ -3,18 +3,11 @@ add_library(CruDemoBase INTERFACE) target_link_libraries(CruDemoBase INTERFACE CruPlatformBootstrap) add_subdirectory(platform) +add_subdirectory(main) +add_subdirectory(ScrollView) +add_subdirectory(InputMethod) -if(WIN32) - add_subdirectory(main) - add_subdirectory(ScrollView) - add_subdirectory(InputMethod) -elseif(APPLE) - add_subdirectory(main) - add_subdirectory(ScrollView) - add_subdirectory(InputMethod) -elseif(UNIX) - add_subdirectory(main) - add_subdirectory(ScrollView) +if(UNIX) add_subdirectory(xcb) endif() |
