blob: 3a290f3ac17b3b6e0fefef8966a33e0f96cc17aa (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | add_executable(demo_input_method main.cpp)
if(APPLE)
	set_target_properties(demo_input_method 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(demo_input_method PRIVATE cru_demo_base)
 |