mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:22:43 +00:00 
			
		
		
		
	 400d3ddb08
			
		
	
	
		400d3ddb08
		
	
	
	
	
		
			
			This feels like a better name since the "autocomplete engine" can, in addition to providing autocomplete suggestions, also find declarations of symbols and report back the symbols that are defined in a document. Also, Cpp/ParserAutoComplete has been renamed to CppComprehensionEngine and Shell/AutoComplete has been renamed to ShellComprehensionEngine.
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			443 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			443 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| compile_ipc(LanguageServer.ipc LanguageServerEndpoint.h)
 | |
| compile_ipc(LanguageClient.ipc LanguageClientEndpoint.h)
 | |
| 
 | |
| set(SOURCES
 | |
|         CodeComprehensionEngine.cpp
 | |
|         ClientConnection.cpp
 | |
|         FileDB.cpp)
 | |
| set(GENERATED_SOURCES
 | |
|         LanguageClientEndpoint.h
 | |
|         LanguageServerEndpoint.h)
 | |
| 
 | |
| serenity_lib(LibLanguageServer language_server)
 | |
| target_link_libraries(LibLanguageServer LibC)
 | |
| 
 | |
| add_subdirectory(Cpp)
 | |
| add_subdirectory(Shell)
 |