From 1bec937076d8d40f94ff4603479f21bca2de6c61 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Sun, 4 Aug 2019 11:03:38 +0200 Subject: Added http lib and basic restapi with rocket_close_im binary --- restapi/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 restapi/CMakeLists.txt (limited to 'restapi/CMakeLists.txt') diff --git a/restapi/CMakeLists.txt b/restapi/CMakeLists.txt new file mode 100644 index 0000000..45a22c2 --- /dev/null +++ b/restapi/CMakeLists.txt @@ -0,0 +1,5 @@ +file(GLOB_RECURSE SOURCES *.c) + +ADD_LIBRARY(restapi STATIC ${SOURCES}) +add_dependencies(restapi cjson-build) +target_link_libraries(restapi common) -- cgit v1.2.3