1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:57:45 +00:00

LibCpp: Add library for working with c++ code

Moved the C++ Lexer we have from LibGUI to here, so that other
components could use it without linking with LibGUI.
This commit is contained in:
Itamar 2020-09-28 16:21:25 +03:00 committed by Andreas Kling
parent fec4152220
commit bf53d7ff64
8 changed files with 132 additions and 126 deletions

View file

@ -17,7 +17,6 @@ set(SOURCES
ComboBox.cpp
Command.cpp
ControlBoxButton.cpp
CppLexer.cpp
CppSyntaxHighlighter.cpp
Desktop.cpp
Dialog.cpp
@ -96,4 +95,4 @@ set(GENERATED_SOURCES
)
serenity_lib(LibGUI gui)
target_link_libraries(LibGUI LibCore LibGfx LibIPC LibThread)
target_link_libraries(LibGUI LibCore LibGfx LibIPC LibThread LibCpp)