Skip to content

Commit 330a9c2

Browse files
committed
Update copyright notice
1 parent a2805d3 commit 330a9c2

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

CMakeLists.txt

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1+
# CMake file for compiling the sqlite3 static library under Windows (for ease of use)
2+
#
3+
# Copyright (c) 2012-2016 Sebastien Rombauts ([email protected])
4+
#
5+
# Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
6+
# or copy at http://opensource.org/licenses/MIT)
7+
18
cmake_minimum_required(VERSION 2.8.12) # first version with add_compile_options()
29
project(SQLiteCpp_Example)
310

4-
# add SQLite3 C++ wrapper arround sqlite3 library (and sqlite3 itself provided for ease of use)
11+
# add SQLite3 C++ wrapper around sqlite3 library (and sqlite3 itself provided for ease of use)
512
# NOTE: here you can set CMake variables to avoid building Example, as well as cpplint, cppcheck...
6-
# NOTE: or set them in the cmake commande line (see for instance provided build.bat/build.sh scripts)
13+
# NOTE: or set them in the cmake command line (see for instance provided build.bat/build.sh scripts)
714
set(SQLITECPP_RUN_CPPCHECK OFF CACHE BOOL "" FORCE)
815
set(SQLITECPP_RUN_CPPLINT OFF CACHE BOOL "" FORCE)
916

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ with a few intuitive and well documented C++ classes.
1414

1515
### License:
1616

17-
Copyright (c) 2012-2017 Sébastien Rombauts ([email protected])
17+
Copyright (c) 2012-2020 Sébastien Rombauts ([email protected])
1818
<a href="https://www.paypal.me/SRombauts" title="Pay Me a Beer! Donate with PayPal :)"><img src="https://www.paypalobjects.com/webstatic/paypalme/images/pp_logo_small.png" width="118"></a>
1919

2020
Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
@@ -34,7 +34,7 @@ git submodule update
3434

3535
### CMake and build:
3636

37-
Use build.bat or ./build.sh script, or cmake commande line (example for Linux):
37+
Use build.bat or ./build.sh script, or cmake command line (example for Linux):
3838

3939
```Shell
4040
mkdir -p build

build.bat

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@REM Copyright (c) 2012-2017 Sebastien Rombauts ([email protected])
1+
@REM Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
22
@REM
33
@REM Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
44
@REM or copy at http://opensource.org/licenses/MIT)
@@ -7,15 +7,15 @@ cd build
77

88
@REM Generate a Visual Studio solution for latest version found
99
cmake ..
10-
if ERRORLEVEL 1 goto onError
10+
@if ERRORLEVEL 1 goto onError
1111

1212
@REM Build default configuration (ie 'Debug')
1313
cmake --build .
14-
if ERRORLEVEL 1 goto onError
14+
@if ERRORLEVEL 1 goto onError
1515

16-
cd ..
17-
exit
16+
goto onSuccess
1817

1918
:onError
2019
@echo An error occured!
20+
:onSuccess
2121
cd ..

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Demonstrates how-to use the SQLite++ wrapper
66
*
7-
* Copyright (c) 2012-2016 Sebastien Rombauts ([email protected])
7+
* Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
88
*
99
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
1010
* or copy at http://opensource.org/licenses/MIT)

0 commit comments

Comments
 (0)