mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:42:43 +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.
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			396 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			396 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     PartitionEditor
 | |
|     TARGETS PartitionEditor
 | |
| )
 | |
| 
 | |
| compile_gml(PartitionEditorWindow.gml PartitionEditorWindowGML.h partition_editor_window_gml)
 | |
| 
 | |
| set(SOURCES
 | |
|     main.cpp
 | |
|     PartitionModel.cpp
 | |
| )
 | |
| 
 | |
| set(GENERATED_SOURCES
 | |
|     PartitionEditorWindowGML.h
 | |
| )
 | |
| 
 | |
| serenity_app(PartitionEditor ICON app-partition-editor)
 | |
| target_link_libraries(PartitionEditor LibMain LibGUI LibPartition)
 |