mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:22:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			662 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			662 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     ClockSettings
 | |
|     RECOMMENDED
 | |
|     TARGETS ClockSettings
 | |
| )
 | |
| 
 | |
| compile_gml(ClockSettingsWidget.gml ClockSettingsWidgetGML.h clock_settings_widget_gml)
 | |
| compile_gml(TimeZoneSettingsWidget.gml TimeZoneSettingsWidgetGML.h time_zone_settings_widget_gml)
 | |
| 
 | |
| set(SOURCES
 | |
|     main.cpp
 | |
|     ClockSettingsWidget.cpp
 | |
|     ClockSettingsWidget.h
 | |
|     ClockSettingsWidgetGML.h
 | |
|     TimeZoneSettingsWidget.cpp
 | |
|     TimeZoneSettingsWidget.h
 | |
|     TimeZoneSettingsWidgetGML.h
 | |
| )
 | |
| 
 | |
| serenity_app(ClockSettings ICON app-analog-clock) # FIXME: Create a ClockSettings icon.
 | |
| target_link_libraries(ClockSettings LibGUI LibMain LibUnicode)
 | |
| link_with_unicode_data(ClockSettings)
 | 
