-
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
36 changed files
with
459 additions
and
459 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (c) 2012-2022 Sebastien Rombauts ([email protected]) | ||
# Copyright (c) 2012-2023 Sebastien Rombauts ([email protected]) | ||
|
||
language: cpp | ||
|
||
|
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,6 +1,6 @@ | ||
# Main CMake file for compiling the library itself, examples and tests. | ||
# | ||
# Copyright (c) 2012-2022 Sebastien Rombauts ([email protected]) | ||
# Copyright (c) 2012-2023 Sebastien Rombauts ([email protected]) | ||
# | ||
# Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt | ||
# or copy at http://opensource.org/licenses/MIT) | ||
|
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,6 +1,6 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2012-2022 Sebastien Rombauts ([email protected]) | ||
Copyright (c) 2012-2023 Sebastien Rombauts ([email protected]) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ with a few intuitive and well documented C++ classes. | |
|
||
### License: | ||
|
||
Copyright (c) 2012-2022 Sébastien Rombauts ([email protected]) | ||
Copyright (c) 2012-2023 Sébastien Rombauts ([email protected]) | ||
<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> | ||
|
||
Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt | ||
|
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,47 +1,47 @@ | ||
# Copyright (c) 2012-2022 Sebastien Rombauts ([email protected]) | ||
|
||
# build format | ||
version: "{build}" | ||
|
||
# scripts that run after cloning repository | ||
install: | ||
- git submodule update --init --recursive | ||
|
||
# Copyright (c) 2012-2023 Sebastien Rombauts ([email protected]) | ||
|
||
# build format | ||
version: "{build}" | ||
|
||
# scripts that run after cloning repository | ||
install: | ||
- git submodule update --init --recursive | ||
|
||
image: | ||
# Reduce the number of images to test on AppVeyor, to speed up the build | ||
- Visual Studio 2022 | ||
# - Visual Studio 2019 | ||
# - Visual Studio 2017 | ||
- Visual Studio 2015 | ||
|
||
# configurations to add to build matrix | ||
# TODO: MinGW Makefiles and MSYS Makefiles | ||
configuration: | ||
- Debug | ||
- Release | ||
|
||
environment: | ||
matrix: | ||
- arch: Win32 | ||
- arch: x64 | ||
|
||
init: | ||
- echo %APPVEYOR_BUILD_WORKER_IMAGE% - %configuration% - %arch% | ||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" (set vs=Visual Studio 15 2017) | ||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" (set vs=Visual Studio 14 2015) | ||
- if "%arch%"=="x64" (set generator="%vs% Win64") else (set generator="%vs%") | ||
# CMake uses a different grammar for Visual Studio 2019, with -A to specify architecture: | ||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" (set generator="Visual Studio 16 2019" -A %arch%) | ||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2022" (set generator="Visual Studio 17 2022" -A %arch%) | ||
- echo %generator% | ||
|
||
# scripts to run before build | ||
before_build: | ||
- mkdir build | ||
- cd build | ||
- cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON -DSQLITECPP_RUN_CPPCHECK=OFF .. -G %generator% | ||
|
||
# build examples, and run tests (ie make & make test) | ||
build_script: | ||
- cmake --build . --config %configuration% | ||
- ctest --output-on-failure | ||
# Reduce the number of images to test on AppVeyor, to speed up the build | ||
- Visual Studio 2022 | ||
# - Visual Studio 2019 | ||
# - Visual Studio 2017 | ||
- Visual Studio 2015 | ||
|
||
# configurations to add to build matrix | ||
# TODO: MinGW Makefiles and MSYS Makefiles | ||
configuration: | ||
- Debug | ||
- Release | ||
|
||
environment: | ||
matrix: | ||
- arch: Win32 | ||
- arch: x64 | ||
|
||
init: | ||
- echo %APPVEYOR_BUILD_WORKER_IMAGE% - %configuration% - %arch% | ||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" (set vs=Visual Studio 15 2017) | ||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" (set vs=Visual Studio 14 2015) | ||
- if "%arch%"=="x64" (set generator="%vs% Win64") else (set generator="%vs%") | ||
# CMake uses a different grammar for Visual Studio 2019, with -A to specify architecture: | ||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" (set generator="Visual Studio 16 2019" -A %arch%) | ||
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2022" (set generator="Visual Studio 17 2022" -A %arch%) | ||
- echo %generator% | ||
|
||
# scripts to run before build | ||
before_build: | ||
- mkdir build | ||
- cd build | ||
- cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON -DSQLITECPP_RUN_CPPCHECK=OFF .. -G %generator% | ||
|
||
# build examples, and run tests (ie make & make test) | ||
build_script: | ||
- cmake --build . --config %configuration% | ||
- ctest --output-on-failure |
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,4 +1,4 @@ | ||
@REM Copyright (c) 2012-2022 Sebastien Rombauts ([email protected]) | ||
@REM Copyright (c) 2012-2023 Sebastien Rombauts ([email protected]) | ||
@REM | ||
@REM Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt | ||
@REM or copy at http://opensource.org/licenses/MIT) | ||
|
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,5 +1,5 @@ | ||
#!/bin/sh | ||
# Copyright (c) 2012-2020 Sébastien Rombauts ([email protected]) | ||
# Copyright (c) 2012-2023 Sébastien Rombauts ([email protected]) | ||
# | ||
# Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt | ||
# or copy at http://opensource.org/licenses/MIT) | ||
|
Oops, something went wrong.