blob: 7f8be37a860c0c9b873b7a62f881ff34f580c473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if(NOT APPLE)
add_executable(demo_input_method main.cpp)
else()
add_executable(demo_input_method MACOSX_BUNDLE main.cpp)
set_target_properties(demo_input_method PROPERTIES
BUNDLE TRUE
MACOSX_BUNDLE_GUI_IDENTIFIER life.crupest.cru.demo-input-method
MACOSX_BUNDLE_BUNDLE_NAME demo-input-method
)
endif()
target_link_libraries(demo_input_method PRIVATE cru_demo_base)
|