mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-05-30 10:59:30 -04:00
12 lines
214 B
CMake
12 lines
214 B
CMake
add_library(Common INTERFACE)
|
|
|
|
target_sources(Common INTERFACE
|
|
ContextData.hpp
|
|
)
|
|
|
|
target_include_directories(Common INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
target_link_libraries(Common INTERFACE
|
|
Qt::Core
|
|
)
|