diff options
Diffstat (limited to 'src/web_service/CMakeLists.txt')
| -rw-r--r-- | src/web_service/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/web_service/CMakeLists.txt b/src/web_service/CMakeLists.txt new file mode 100644 index 000000000..334d82a8a --- /dev/null +++ b/src/web_service/CMakeLists.txt | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | set(SRCS | ||
| 2 | telemetry_json.cpp | ||
| 3 | web_backend.cpp | ||
| 4 | ) | ||
| 5 | |||
| 6 | set(HEADERS | ||
| 7 | telemetry_json.h | ||
| 8 | web_backend.h | ||
| 9 | ) | ||
| 10 | |||
| 11 | create_directory_groups(${SRCS} ${HEADERS}) | ||
| 12 | |||
| 13 | add_library(web_service STATIC ${SRCS} ${HEADERS}) | ||
| 14 | target_link_libraries(web_service PUBLIC common cpr json-headers) | ||