diff options
author | crupest <crupest@outlook.com> | 2022-05-15 14:15:31 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-05-15 14:15:31 +0800 |
commit | 34a64e6ffefaab007578932ddbab931a25f1d56e (patch) | |
tree | 541fdb8279e829a129df62288d09916bf23c9200 /demos/InputMethod/CMakeLists.txt | |
parent | 8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6 (diff) | |
download | cru-34a64e6ffefaab007578932ddbab931a25f1d56e.tar.gz cru-34a64e6ffefaab007578932ddbab931a25f1d56e.tar.bz2 cru-34a64e6ffefaab007578932ddbab931a25f1d56e.zip |
...
Diffstat (limited to 'demos/InputMethod/CMakeLists.txt')
-rw-r--r-- | demos/InputMethod/CMakeLists.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/demos/InputMethod/CMakeLists.txt b/demos/InputMethod/CMakeLists.txt new file mode 100644 index 00000000..8ceeaec9 --- /dev/null +++ b/demos/InputMethod/CMakeLists.txt @@ -0,0 +1,12 @@ +add_executable(CruDemoInputMethod main.cpp) + +if(APPLE) + set_target_properties(CruDemoInputMethod PROPERTIES + MACOSX_BUNDLE TRUE + MACOSX_BUNDLE_BUNDLE_NAME demo-input-method + MACOSX_BUNDLE_GUI_IDENTIFIER life.crupest.cru.demo-input-method + ) +endif() + +target_link_libraries(CruDemoInputMethod PRIVATE CruDemoBase) + |