mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-05-30 02:49:12 -04:00
13 lines
222 B
CMake
13 lines
222 B
CMake
add_library(TomlSerializer STATIC
|
|
TomlWriter.hpp TomlWriter.cpp
|
|
)
|
|
|
|
target_link_libraries(TomlSerializer
|
|
PUBLIC
|
|
Qt::Core
|
|
)
|
|
|
|
target_include_directories(TomlSerializer
|
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|