Merge pull request #169 from Chris-Bond/master

Update sqlite version to latest
This commit is contained in:
Alexander Karatarakis 2016-10-17 12:09:27 -07:00 committed by GitHub
commit 315ab06f63
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,3 @@
Source: sqlite3
Version: 3120200
Version: 3.15.0 (3150000)
Description: SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.

View File

@ -1,16 +1,16 @@
include(vcpkg_common_functions)
set(SOURCE_PATH ${CMAKE_CURRENT_LIST_DIR})
vcpkg_download_distfile(ARCHIVE
URLS "http://www.sqlite.org/2016/sqlite-amalgamation-3120200.zip"
FILENAME "sqlite-amalgamation-3120200.zip"
SHA512 92e1cc09dc4d4e9dd4c189e4a5061664f11971eb3e14c4c59e1f489f201411b08a31dae9e6fc50fffd49bb72f88ac3d99b7c7cd5e334b3079c165ee1c4f5a16e
URLS "https://sqlite.org/2016/sqlite-amalgamation-3150000.zip"
FILENAME "sqlite-amalgamation-3150000.zip"
SHA512 82fea23b2158c448cbe2b80121eb32652df49eb85357edbaeef0c343ef478433706ebc4cd8add1985763db223d9268d0f7e74fc8db59353c15267cbc3d2078a8
)
vcpkg_extract_source_archive(${ARCHIVE})
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
OPTIONS
-DSOURCE=${CURRENT_BUILDTREES_DIR}/src/sqlite-amalgamation-3120200
-DSOURCE=${CURRENT_BUILDTREES_DIR}/src/sqlite-amalgamation-3150000
)
vcpkg_install_cmake()