diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 50f7b1f..9aa7a91 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -74,7 +74,8 @@ Version 1.3.0 - November 1 2015 Further improvements to README Added Backup class -Version 1.3.1 - ? 2015 +Version 1.3.1 - ? 2016 Swith Linux/Mac build to the provided SQLite3 C library Update SQLite3 from 3.8.8.3 to latest 3.9.2 (2015-11-02) Remove warnings + Remove biicode support (defunct service, servers will shutdown the 16th of February 2016) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ea8583..67f82ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,11 +1,9 @@ # Main CMake file for compiling the library itself, examples and tests. # -# Copyright (c) 2012-2015 Sebastien Rombauts (sebastien.rombauts@gmail.com) +# Copyright (c) 2012-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) # # Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt # or copy at http://opensource.org/licenses/MIT) -if (NOT BIICODE) - cmake_minimum_required(VERSION 2.6) project(SQLiteCpp) @@ -123,7 +121,6 @@ source_group(doc FILES ${SQLITECPP_DOC}) set(SQLITECPP_SCRIPT .travis.yml appveyor.yml - biicode.conf build.bat build.sh cpplint.py @@ -252,20 +249,3 @@ else (SQLITECPP_BUILD_TESTS) message(STATUS "SQLITECPP_BUILD_TESTS OFF") endif (SQLITECPP_BUILD_TESTS) - -else (NOT BIICODE) - - # biicode doesn't process files bigger than 5Mb - list(APPEND BII_LIB_SRC sqlite3/sqlite3.c) - # Include base block dir - ADD_BIICODE_TARGETS() - - # Link target with pthread and dl for linux - if (UNIX) - target_link_libraries(${BII_BLOCK_TARGET} INTERFACE pthread) - if (NOT APPLE) - target_link_libraries(${BII_BLOCK_TARGET} INTERFACE dl) - endif () - endif () - -endif (NOT BIICODE) diff --git a/README.md b/README.md index 179d241..179c39a 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ SQLiteC++ [![license](https://img.shields.io/github/license/SRombauts/SQLiteCpp.svg)](https://github.com/SRombauts/SQLiteCpp/blob/master/LICENSE.txt) [![Travis CI Linux Build Status](https://travis-ci.org/SRombauts/SQLiteCpp.svg)](https://travis-ci.org/SRombauts/SQLiteCpp "Travis CI Linux Build Status") [![AppVeyor Windows Build status](https://ci.appveyor.com/api/projects/status/github/SRombauts/SQLiteCpp?svg=true)](https://ci.appveyor.com/project/SbastienRombauts/SQLiteCpp "AppVeyor Windows Build status") -[![Biicode Build Status](https://webapi.biicode.com/v1/badges/sqlite/sqlite/sqlite/master)](https://www.biicode.com/sqlite/sqlite) [![Join the chat at https://gitter.im/SRombauts/SQLiteCpp](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/SRombauts/SQLiteCpp?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper. @@ -21,7 +20,7 @@ with a few intuitive and well documented C++ class. ### License: -Copyright (c) 2012-2015 Sébastien Rombauts (sebastien.rombauts@gmail.com) +Copyright (c) 2012-2016 Sébastien Rombauts (sebastien.rombauts@gmail.com) Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or copy at http://opensource.org/licenses/MIT) diff --git a/biicode.conf b/biicode.conf deleted file mode 100644 index 5d6ee9c..0000000 --- a/biicode.conf +++ /dev/null @@ -1,43 +0,0 @@ -# Biicode configuration file - -[requirements] - # Blocks and versions this block depends on e.g. - google/gtest : 9 - -[parent] - # The parent version of this block. Must match folder name. E.g. - # user/block # No version number means not published yet - # You can change it to publish to a different track, and change version, e.g. - sqlite/sqlite: 7 - -[paths] - # Local directories to look for headers (within block) - include - / - sqlite3 - -[dependencies] - # Manual adjust file implicit dependencies, add (+), remove (-), or overwrite (=) - include/SQLiteCpp/Assertion.h - tests/Database_test.cpp - include/SQLiteCpp/Assertion.h - examples/example1/main.cpp - -[mains] - # Manual adjust of files that define an executable - # !main.cpp # Do not build executable from this file - # main2.cpp # Build it (it doesnt have a main() function, but maybe it includes it) - -[hooks] - # These are defined equal to [dependencies],files names matching bii*stage*hook.py - # will be launched as python scripts at stage = {post_process, clean} - # CMakeLists.txt + bii/my_post_process1_hook.py bii_clean_hook.py - -[includes] - # Mapping of include patterns to external blocks - gtest/gtest.h: google/gtest/include - - -[data] - # Manually define data files dependencies, that will be copied to bin for execution - # By default they are copied to bin/user/block/... which should be taken into account - # when loading from disk such data - examples/example1/main.cpp + example.db3 logo.png