mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:42:43 +00:00 
			
		
		
		
	 631d36fd98
			
		
	
	
		631d36fd98
		
	
	
	
	
		
			
			This adds component declarations so that users can select to not build certain parts of the OS.
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			276 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			276 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     Help
 | |
|     RECOMMENDED
 | |
|     TARGETS Help
 | |
| )
 | |
| 
 | |
| set(SOURCES
 | |
|     History.cpp
 | |
|     main.cpp
 | |
|     ManualModel.cpp
 | |
|     ManualPageNode.cpp
 | |
|     ManualSectionNode.cpp
 | |
| )
 | |
| 
 | |
| serenity_app(Help ICON app-help)
 | |
| target_link_libraries(Help LibWeb LibMarkdown LibGUI LibDesktop)
 |