From b806f5ad3db5d758be02d2e46bc198969a1e90e8 Mon Sep 17 00:00:00 2001 From: Henrique Eihara Date: Wed, 14 Mar 2018 01:13:02 -0300 Subject: [PATCH] feat: add new link libraries into CMakeLists --- CMakeLists.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0fd910b..03abe30 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,6 +17,15 @@ file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/www target_link_libraries(Server websockets) target_link_libraries(Server ServerHTTP) + +target_link_libraries(Fingerprint curl) +target_link_libraries(Fingerprint cjson) +target_link_libraries(Fingerprint crypto) +target_link_libraries(Fingerprint fprint) + +target_link_libraries(Device Fingerprint) + +target_link_libraries(fingerprint-client Device) target_link_libraries(fingerprint-client Server) install(TARGETS fingerprint-client DESTINATION /bin)