
This moves all code comprehension-related code to a new library, LibCodeComprehension. This also moves some types related to code comprehension tasks (such as autocomplete, find declaration) out of LibGUI and into LibCodeComprehension.
20 lines
437 B
CMake
20 lines
437 B
CMake
set(SOURCES
|
|
CppComprehensionEngine.cpp
|
|
)
|
|
|
|
serenity_lib(LibCppComprehension cppcomprehension)
|
|
target_link_libraries(LibCppComprehension LibCodeComprehension LibC)
|
|
|
|
serenity_component(
|
|
CppComprehensionTests
|
|
TARGETS CppComprehensionTests
|
|
)
|
|
|
|
set(SOURCES
|
|
CppComprehensionEngine.cpp
|
|
Tests.cpp
|
|
)
|
|
|
|
serenity_bin(CppComprehensionTests)
|
|
|
|
target_link_libraries(CppComprehensionTests LibCodeComprehension LibCpp LibRegex LibMain)
|