aboutsummaryrefslogtreecommitdiff
path: root/src/theme_builder/CMakeLists.txt
blob: 95619369faf6751385409d7b516825fe26417b43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
add_executable(cru_theme_builder
	main.cpp
	components/MainWindow.cpp
	components/StyleRuleEditor.cpp
	components/StyleRuleSetEditor.cpp
	components/conditions/ConditionEditor.cpp
	components/properties/ColorPropertyEditor.cpp
	components/properties/PointPropertyEditor.cpp
	components/properties/TextPropertyEditor.cpp
	components/properties/ThicknessPropertyEditor.cpp
)

if(APPLE)
	set_target_properties(cru_theme_builder PROPERTIES
		MACOSX_BUNDLE TRUE
    	MACOSX_BUNDLE_BUNDLE_NAME cru-theme-builder
    	MACOSX_BUNDLE_GUI_IDENTIFIER life.crupest.cru.theme-builder
	)
endif()

target_add_resources(cru_theme_builder cru/ui)
target_link_libraries(cru_theme_builder PRIVATE cru_platform_bootstrap cru_ui)