7 lines
288 B
CMake
7 lines
288 B
CMake
###############################################################################
|
|
# toml
|
|
###############################################################################
|
|
|
|
add_library(toml toml.cpp)
|
|
target_include_directories(toml PUBLIC ${CMAKE_CURRENT_LIST_DIR})
|
|
target_link_libraries(toml) |