esri_assignment/src/CMakeLists.txt

11 lines
255 B
CMake
Raw Normal View History

2021-06-17 20:14:50 +02:00
set(assignment_SOURCES
2021-06-26 09:15:57 +02:00
main.cpp
calc.cpp
json_output.cpp
proto_loader.cpp)
2021-06-17 20:14:50 +02:00
add_executable(main ${assignment_SOURCES})
2021-06-26 09:15:57 +02:00
target_link_libraries(main PRIVATE proto ${PROTOBUF_LIBRARY})
target_link_libraries(main PRIVATE nlohmann_json::nlohmann_json)