mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:27:43 +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:
parent
fec4152220
commit
bf53d7ff64
8 changed files with 132 additions and 126 deletions
6
Libraries/LibCpp/CMakeLists.txt
Normal file
6
Libraries/LibCpp/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
set(SOURCES
|
||||
Lexer.cpp
|
||||
)
|
||||
|
||||
serenity_lib(LibCpp cpp)
|
||||
target_link_libraries(LibCpp LibC)
|
Loading…
Add table
Add a link
Reference in a new issue