summaryrefslogtreecommitdiff
path: root/src/web_service/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/web_service/CMakeLists.txt')
-rw-r--r--src/web_service/CMakeLists.txt14
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 @@
1set(SRCS
2 telemetry_json.cpp
3 web_backend.cpp
4 )
5
6set(HEADERS
7 telemetry_json.h
8 web_backend.h
9 )
10
11create_directory_groups(${SRCS} ${HEADERS})
12
13add_library(web_service STATIC ${SRCS} ${HEADERS})
14target_link_libraries(web_service PUBLIC common cpr json-headers)