From 247a53db3967792df64a583cea5d3c4fa299d4d5 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Mon, 12 Sep 2022 01:08:48 -0400 Subject: correct library linkage ordering. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 815e901..6536a47 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,8 +4,10 @@ set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) find_package(OpenCV REQUIRED COMPONENTS core imgproc imgcodecs highgui) +find_package(SQLite3 REQUIRED) find_package(Threads REQUIRED) include_directories(${OpenCV_INCLUDE_DIRS}) +include_directories(${SQLite3_INCLUDE_DIRS}) INCLUDE (CheckTypeSize) -- cgit v1.2.3