From 572d644e8de439fe59f5598fc902d71b60cf8a85 Mon Sep 17 00:00:00 2001 From: Timotej Kapus Date: Sun, 28 Oct 2018 12:49:52 +0000 Subject: Clean klee-stats, StatsTracker and cmake --- CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 30a7292c..ebcbe6f6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -415,6 +415,16 @@ else() message(STATUS "TCMalloc support disabled") endif() +################################################################################ +# Detect SQLite3 +################################################################################ +find_package(SQLite3) +if (SQLITE3_FOUND) + include_directories(${SQLITE3_INCLUDE_DIRS}) +else() + message( FATAL_ERROR "SQLite3 not found, please install" ) +endif() + ################################################################################ # Detect libcap ################################################################################ -- cgit 1.4.1