From 8dc8c3a86d3bf07fbfcf3789b8ce90186fb942ca Mon Sep 17 00:00:00 2001 From: Eelke Klein Date: Fri, 1 Sep 2017 10:21:29 +0200 Subject: [PATCH] Added missing dependency on boost to core so it can find the boost headers. --- src/core/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 33250ca..95b09fc 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -8,6 +8,7 @@ add_library(core STATIC SqlLexer.cpp) target_link_libraries(core PUBLIC + boost botan Qt5::Core )