aboutsummaryrefslogtreecommitdiff
path: root/demos/input_method/CMakeLists.txt
blob: 7c19c4dd30244fc125f85ebf41652ed83b3e9e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
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 cru_demo_base)