-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
35 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Main CMake file for compiling the library itself, examples and tests. | ||
# | ||
# Copyright (c) 2012-2021 Sebastien Rombauts ([email protected]) | ||
# Copyright (c) 2012-2022 Sebastien Rombauts ([email protected]) | ||
# | ||
# Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt | ||
# or copy at http://opensource.org/licenses/MIT) | ||
cmake_minimum_required(VERSION 3.1) # for "CMAKE_CXX_STANDARD" version | ||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") # custom CMake modules like FindSQLiteCpp | ||
project(SQLiteCpp VERSION 3.1.1) | ||
project(SQLiteCpp VERSION 3.2.0) | ||
|
||
# SQLiteC++ 3.x requires C++11 features | ||
if (NOT CMAKE_CXX_STANDARD) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* | ||
* Include this main header file in your project to gain access to all functionality provided by the wrapper. | ||
* | ||
* Copyright (c) 2012-2021 Sebastien Rombauts ([email protected]) | ||
* Copyright (c) 2012-2022 Sebastien Rombauts ([email protected]) | ||
* | ||
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt | ||
* or copy at http://opensource.org/licenses/MIT) | ||
|
@@ -40,5 +40,5 @@ | |
* | ||
* WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt | ||
*/ | ||
#define SQLITECPP_VERSION "3.01.01" // 3.1.1 | ||
#define SQLITECPP_VERSION_NUMBER 3001001 // 3.1.1 | ||
#define SQLITECPP_VERSION "3.02.00" // 3.2.0 | ||
#define SQLITECPP_VERSION_NUMBER 3002000 // 3.2.0 |