3 lines
129 B
CMake
3 lines
129 B
CMake
|
|
add_library(file file_scan.cpp)
|
||
|
|
target_include_directories(file PUBLIC ${CMAKE_CURRENT_LIST_DIR})
|
||
|
|
target_link_libraries(file log)
|