mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:02:44 +00:00 
			
		
		
		
	 166a905951
			
		
	
	
		166a905951
		
	
	
	
	
		
			
			We previously put the generated headers in SOURCES, which did not mark them as GENERATED (and did not produce a proper dependency). This commit moves all generated headers into GENERATED_SOURCES, and removes useless header SOURCES.
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     NetworkSettings
 | |
|     REQUIRED
 | |
|     TARGETS NetworkSettings
 | |
| )
 | |
| 
 | |
| compile_gml(NetworkSettings.gml NetworkSettingsGML.h network_settings_gml)
 | |
| 
 | |
| set(SOURCES
 | |
|     NetworkSettingsWidget.cpp
 | |
|     main.cpp
 | |
| )
 | |
| 
 | |
| set(GENERATED_SOURCES
 | |
|     NetworkSettingsGML.h
 | |
| )
 | |
| 
 | |
| serenity_app(NetworkSettings ICON network)
 | |
| target_link_libraries(NetworkSettings LibGUI LibMain)
 |