-
Notifications
You must be signed in to change notification settings - Fork 136
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
1 parent
fed5071
commit dfd5017
Showing
46 changed files
with
228,650 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
add_subdirectory(SQLiteCpp) | ||
set_property(TARGET "SQLiteCpp" PROPERTY FOLDER "External Libraries") | ||
set_property(TARGET "SQLiteCpp_cpplint" PROPERTY FOLDER "External Libraries") | ||
set_property(TARGET "sqlite3" PROPERTY FOLDER "External Libraries") |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Debug | ||
Release | ||
build | ||
example1 | ||
*.a | ||
|
||
/SQLiteCpp.sln | ||
*.ncb | ||
*.suo | ||
*.user | ||
*sdf | ||
*.vc* | ||
*~ | ||
doc | ||
core | ||
*ipch | ||
.settings/ | ||
|
||
CMakeCache.txt | ||
CMakeFiles | ||
*.cmake | ||
*.dir | ||
Testing | ||
Win32 | ||
|
||
SQLiteCpp_example1 | ||
SQLiteCpp_tests | ||
|
||
!FindSQLiteCpp.cmake |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "googletest"] | ||
path = googletest | ||
url = https://github.com/google/googletest.git |
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 |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>SQLiteC++</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.python.pydev.PyDevBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> | ||
<triggers>clean,full,incremental,</triggers> | ||
<arguments> | ||
<dictionary> | ||
<key>?name?</key> | ||
<value></value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.append_environment</key> | ||
<value>true</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.autoBuildTarget</key> | ||
<value>all</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.buildArguments</key> | ||
<value>-j</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.buildCommand</key> | ||
<value>make</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.cleanBuildTarget</key> | ||
<value>clean</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.contents</key> | ||
<value>org.eclipse.cdt.make.core.activeConfigSettings</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.enableAutoBuild</key> | ||
<value>false</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.enableCleanBuild</key> | ||
<value>true</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.enableFullBuild</key> | ||
<value>true</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.fullBuildTarget</key> | ||
<value>all</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.stopOnError</key> | ||
<value>true</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key> | ||
<value>true</value> | ||
</dictionary> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> | ||
<triggers>full,incremental,</triggers> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.cdt.core.cnature</nature> | ||
<nature>org.eclipse.cdt.core.ccnature</nature> | ||
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> | ||
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> | ||
<nature>org.python.pydev.pythonNature</nature> | ||
</natures> | ||
</projectDescription> |
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 |
---|---|---|
@@ -0,0 +1,163 @@ | ||
# Copyright (c) 2012-2016 Sebastien Rombauts ([email protected]) | ||
|
||
# request for Ubuntu 14.04 Trusty VM | ||
sudo: true | ||
dist: trusty | ||
|
||
cache: | ||
apt: true | ||
|
||
# NOTE: no language, so that we can set CXX and CC env vars as required | ||
#language: cpp | ||
|
||
matrix: | ||
include: | ||
# gcc default | ||
- compiler: gcc | ||
env: | ||
- CC=gcc | ||
- CXX=g++ | ||
# gcc 4.9 std=default | ||
- compiler: gcc | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-4.9 | ||
env: | ||
- CC=gcc-4.9 | ||
- CXX=g++-4.9 | ||
# gcc 5 std=c++03 | ||
- compiler: gcc | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-5 | ||
env: | ||
- CC=gcc-5 | ||
- CXX=g++-5 | ||
- CXXFLAGS="-std=c++03" | ||
# gcc 5 std=c++11 | ||
- compiler: gcc | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-5 | ||
env: | ||
- CC=gcc-5 | ||
- CXX=g++-5 | ||
- CXXFLAGS="-std=c++11" | ||
# gcc 5 std=c++14 | ||
- compiler: gcc | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-5 | ||
env: | ||
- CC=gcc-5 | ||
- CXX=g++-5 | ||
- CXXFLAGS="-std=c++14" | ||
# gcc 5 std=c++1z | ||
- compiler: gcc | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-5 | ||
env: | ||
- CC=gcc-5 | ||
- CXX=g++-5 | ||
- CXXFLAGS="-std=c++1z" | ||
# gcc 6 std=c++14 | ||
- compiler: gcc | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-6 | ||
env: | ||
- CXX=g++-6 | ||
- CXXFLAGS="-std=c++14" | ||
# gcc 6 std=c++1z | ||
- compiler: gcc | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-6 | ||
env: | ||
- CC=gcc-6 | ||
- CXX=g++-6 | ||
- CXXFLAGS="-std=c++1z" | ||
# gcc 6 std=c++14 all warnings, pedantic | ||
- compiler: gcc | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-6 | ||
env: | ||
- CC=gcc-6 | ||
- CXX=g++-6 | ||
- CXXFLAGS="-std=c++14 -Wall -Wextra -pedantic" | ||
# clang default | ||
- compiler: clang | ||
env: | ||
- CC=clang | ||
- CXX=clang++ | ||
# clang 3.8 | ||
- compiler: clang | ||
os: linux | ||
env: | ||
- CC=clang | ||
- CXX=clang++ | ||
- LLVM_VERSION=3.8.0 | ||
- LLVM_ARCHIVE_PATH=$HOME/clang+llvm.tar.xz | ||
- CPPFLAGS="-I $HOME/clang-$LLVM_VERSION/include/c++/v1" | ||
- CXXFLAGS=-lc++ | ||
- PATH=$HOME/clang-$LLVM_VERSION/bin:$PATH | ||
- LD_LIBRARY_PATH=$HOME/clang-$LLVM_VERSION/lib:$LD_LIBRARY_PATH | ||
before_install: | ||
- wget http://llvm.org/releases/$LLVM_VERSION/clang+llvm-$LLVM_VERSION-x86_64-linux-gnu-ubuntu-14.04.tar.xz -O $LLVM_ARCHIVE_PATH | ||
- mkdir $HOME/clang-$LLVM_VERSION | ||
- tar xf $LLVM_ARCHIVE_PATH -C $HOME/clang-$LLVM_VERSION --strip-components 1 | ||
# os x | ||
- compiler: clang | ||
os: osx | ||
osx_image: xcode8 | ||
#install: | ||
# - brew install cmake | ||
env: | ||
- CC=clang | ||
- CXX=clang | ||
- CXXFLAGS=-lstdc++ | ||
|
||
|
||
before_install: | ||
- if [[ "$CXX" == "g++" ]]; then pip install --user cpp-coveralls ; fi | ||
|
||
# scripts to run before build | ||
before_script: | ||
- mkdir build | ||
- cd build | ||
- cmake -DCMAKE_BUILD_TYPE=Debug -DSQLITECPP_USE_GCOV=ON -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON .. | ||
|
||
# build examples, and run tests (ie make & make test) | ||
script: | ||
- cmake --build . | ||
- ctest --verbose --output-on-failure | ||
|
||
# generate and publish GCov coveralls results | ||
after_success: | ||
- if [[ "$CXX" == "g++" ]]; then coveralls --root .. -e examples -e googletest -e sqlite3 -e tests -E ".*feature_tests.*" -E ".*CompilerId.*" --gcov-options '\-lp' ; fi |
Oops, something went wrong.