mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:12:45 +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.
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			443 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			443 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     Help
 | |
|     RECOMMENDED
 | |
|     TARGETS Help
 | |
|     DEPENDS WebContent
 | |
| )
 | |
| 
 | |
| compile_gml(HelpWindow.gml HelpWindowGML.h help_window_gml)
 | |
| 
 | |
| set(SOURCES
 | |
|     History.cpp
 | |
|     main.cpp
 | |
|     MainWidget.cpp
 | |
|     ManualModel.cpp
 | |
|     ManualPageNode.cpp
 | |
|     ManualSectionNode.cpp
 | |
| )
 | |
| 
 | |
| set(GENERATED_SOURCES
 | |
|     HelpWindowGML.h
 | |
| )
 | |
| 
 | |
| serenity_app(Help ICON app-help)
 | |
| target_link_libraries(Help LibWebView LibWeb LibMarkdown LibGUI LibDesktop LibMain)
 |