mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:22:43 +00:00 
			
		
		
		
	 8825abe7ed
			
		
	
	
		8825abe7ed
		
	
	
	
	
		
			
			Converts Help's layout to GML, propagates model and icon creation errors, and switches to the MainWidget-namespace organization pattern seen in more up-to-date apps like TextEditor to make things easier to maintain going forward.
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			413 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			413 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     Help
 | |
|     RECOMMENDED
 | |
|     TARGETS Help
 | |
| )
 | |
| 
 | |
| compile_gml(HelpWindow.gml HelpWindowGML.h help_window_gml)
 | |
| 
 | |
| set(SOURCES
 | |
|     HelpWindowGML.h
 | |
|     History.cpp
 | |
|     main.cpp
 | |
|     MainWidget.cpp
 | |
|     ManualModel.cpp
 | |
|     ManualPageNode.cpp
 | |
|     ManualSectionNode.cpp
 | |
| )
 | |
| 
 | |
| serenity_app(Help ICON app-help)
 | |
| target_link_libraries(Help LibWeb LibMarkdown LibGUI LibDesktop LibMain)
 | |
| link_with_unicode_data(Help)
 |