We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53c0077 commit adf7ecfCopy full SHA for adf7ecf
CMakeLists.txt
@@ -6,6 +6,10 @@
6
# or copy at http://opensource.org/licenses/MIT)
7
cmake_minimum_required(VERSION 3.1) # for "CMAKE_CXX_STANDARD" version
8
project(SQLiteCpp_Example VERSION 2.0)
9
+
10
+# SQLiteC++ 3.x now requires C++11 compiler
11
+set(CMAKE_CXX_STANDARD 11)
12
+set(CMAKE_CXX_STANDARD_REQUIRED ON)
13
14
# Add SQLite3 C++ wrapper around sqlite3 library (and sqlite3 itself provided for ease of use)
15
# Here you can set CMake variables to avoid building Example, as well as cpplint, cppcheck...
0 commit comments