- Sidequest: Clean up header-only library dependencies with cmake.

This commit is contained in:
Ian Roddis
2021-08-13 12:43:39 -03:00
parent 9f90f54b67
commit dfb71b63b8
12 changed files with 82 additions and 48 deletions

View File

@@ -0,0 +1,5 @@
project(rest_server)
file(GLOB SOURCES *.cpp)
add_executable(${PROJECT_NAME} ${SOURCES})
target_link_libraries(${PROJECT_NAME} daggy stdc++fs rapidjson pistache argparse)
set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME "daggy")