CMakeLists.txt 421 B

123456789101112131415
  1. set(SOURCES
  2. LexerAutoComplete.cpp
  3. ParserAutoComplete.cpp
  4. main.cpp
  5. )
  6. set(GENERATED_SOURCES
  7. ../LanguageServerEndpoint.h
  8. ../LanguageClientEndpoint.h)
  9. serenity_bin(CppLanguageServer)
  10. # We link with LibGUI because we use GUI::TextDocument to update
  11. # the content of files according to the edit actions we receive over IPC.
  12. target_link_libraries(CppLanguageServer LibIPC LibCpp LibGUI LibLanguageServer)