diff options
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) + |