aboutsummaryrefslogtreecommitdiffhomepage
path: root/sqlite
diff options
context:
space:
mode:
authorArseny Smirnov <arseny30@gmail.com>2018-03-06 16:28:43 +0300
committerArseny Smirnov <arseny30@gmail.com>2018-03-06 16:28:43 +0300
commitbc75542960bd5a07edc705c9c2bf83999bfc0cf9 (patch)
tree80a849481791de06646a0a53c20fba65c5c27c83 /sqlite
parentef92fb36eac1043ebf84f582d26c6752075fabe0 (diff)
minor cmake fix
GitOrigin-RevId: 539498b3ade92f5faca4d63c8ecf3c80783caad7
Diffstat (limited to 'sqlite')
-rw-r--r--sqlite/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlite/CMakeLists.txt b/sqlite/CMakeLists.txt
index b1e591be1..c94efe4f5 100644
--- a/sqlite/CMakeLists.txt
+++ b/sqlite/CMakeLists.txt
@@ -36,9 +36,9 @@ if ("${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsStore")
endif()
if (GCC OR CLANG)
- target_compile_options(tdsqlite PRIVATE "-Wno-deprecated-declarations -Wno-unused-variable -Wno-unused-const-variable -Wno-unused-function")
+ target_compile_options(tdsqlite PRIVATE -Wno-deprecated-declarations -Wno-unused-variable -Wno-unused-const-variable -Wno-unused-function)
if (CLANG)
- target_compile_options(tdsqlite PRIVATE "-Wno-parentheses-equality -Wno-unused-value")
+ target_compile_options(tdsqlite PRIVATE -Wno-parentheses-equality -Wno-unused-value)
endif()
elseif (MSVC)
target_compile_options(tdsqlite PRIVATE /wd4996)