From 67af9ebc2591aa17c13218c6f51aec82015b79a1 Mon Sep 17 00:00:00 2001 From: James Turner Date: Fri, 8 May 2020 14:53:09 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20Cmake=20typo,=20don=E2=80=99t=20quote=20m?= =?UTF-8?q?ultiple=20definitions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 3rdparty/sqlite3/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/sqlite3/CMakeLists.txt b/3rdparty/sqlite3/CMakeLists.txt index 5fa7ad37e..726b30346 100644 --- a/3rdparty/sqlite3/CMakeLists.txt +++ b/3rdparty/sqlite3/CMakeLists.txt @@ -1,5 +1,5 @@ add_library(fgsqlite3 STATIC sqlite3.c) -target_compile_definitions(fgsqlite3 PRIVATE "SQLITE_OMIT_LOAD_EXTENSION NDEBUG") +target_compile_definitions(fgsqlite3 PRIVATE SQLITE_OMIT_LOAD_EXTENSION NDEBUG) set_target_properties(fgsqlite3 PROPERTIES COMPILE_FLAGS "-fpic -fno-fast-math")