From e8439d18cee63a8f8a3acd7f8bb3786567ee6261 Mon Sep 17 00:00:00 2001 From: jackb-p Date: Sun, 31 Jul 2016 23:18:21 +0100 Subject: [PATCH] CMake: Ensure sqlite3.c is compiled --- TriviaBot/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TriviaBot/CMakeLists.txt b/TriviaBot/CMakeLists.txt index 1998650..c169857 100644 --- a/TriviaBot/CMakeLists.txt +++ b/TriviaBot/CMakeLists.txt @@ -5,7 +5,7 @@ project(TriviaBot) ## get source ## ############################################################## ############################################################################### -file(GLOB_RECURSE sources bot/*.cpp bot/*.hpp) +file(GLOB_RECURSE sources bot/*.cpp bot/*.hpp ../lib/sqlite3/sqlite3.c) ############################################################################### ## target definitions #########################################################