mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 16:29:20 +08:00
Merge pull request #246 from gwenn/build-scripts-comments
Add comments in build scripts (#244)
This commit is contained in:
commit
09e3f28935
@ -16,11 +16,11 @@ addons:
|
||||
sources:
|
||||
- llvm-toolchain-precise-3.9
|
||||
- ubuntu-toolchain-r-test
|
||||
packages:
|
||||
packages: # recommanded versions for rust-bindgen
|
||||
- llvm-3.9-dev
|
||||
- libclang-3.9-dev
|
||||
|
||||
env:
|
||||
env: # specify the clang path for rust-bindgen
|
||||
- LIBCLANG_PATH=/usr/lib/llvm-3.9/lib
|
||||
|
||||
script:
|
||||
|
12
appveyor.yml
12
appveyor.yml
@ -8,12 +8,12 @@ install:
|
||||
- if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
|
||||
- rustc -V
|
||||
- cargo -V
|
||||
- ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-dll-win64-x64-3160200.zip'
|
||||
- cmd: 7z e sqlite-dll-win64-x64-3160200.zip -y > nul
|
||||
- ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-amalgamation-3160200.zip'
|
||||
- cmd: 7z e sqlite-amalgamation-3160200.zip -y > nul
|
||||
- SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER%
|
||||
- SET SQLITE3_INCLUDE_DIR=%APPVEYOR_BUILD_FOLDER%
|
||||
- ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-dll-win64-x64-3170000.zip' # download SQLite dll (useful only when the `bundled` feature is not set)
|
||||
- cmd: 7z e sqlite-dll-win64-x64-3170000.zip -y > nul
|
||||
- ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-amalgamation-3170000.zip' # download SQLite headers (useful only when the `bundled` feature is not set)
|
||||
- cmd: 7z e sqlite-amalgamation-3170000.zip -y > nul
|
||||
- SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER% # specify where the SQLite dll has been downloaded (useful only when the `bundled` feature is not set)
|
||||
- SET SQLITE3_INCLUDE_DIR=%APPVEYOR_BUILD_FOLDER% # specify where the SQLite headers have been downloaded (useful only when the `bundled` feature is not set)
|
||||
|
||||
build: false
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user