mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 09:46:02 -04:00
Remove biicode support, as servers will shutdown the 16th of February
This commit is contained in:
parent
aafd35a863
commit
e9a2c9bb57
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -5,7 +5,6 @@ SQLiteC++
|
||||
[](https://github.com/SRombauts/SQLiteCpp/blob/master/LICENSE.txt)
|
||||
[](https://travis-ci.org/SRombauts/SQLiteCpp "Travis CI Linux Build Status")
|
||||
[](https://ci.appveyor.com/project/SbastienRombauts/SQLiteCpp "AppVeyor Windows Build status")
|
||||
[](https://www.biicode.com/sqlite/sqlite)
|
||||
[](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)
|
||||
|
43
biicode.conf
43
biicode.conf
@ -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
|
Loading…
x
Reference in New Issue
Block a user