mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-31 07:58:24 +02:00
Fix for Data/SQLite on Linux
This commit is contained in:
parent
5ee68dc96f
commit
090d24dce4
@ -55,6 +55,7 @@ model {
|
||||
cppCompiler.define "SQLITE_OMIT_DEPRECATED"
|
||||
}
|
||||
if (toolChain in Gcc) {
|
||||
cCompiler.args "-I$projectDir/src"
|
||||
cCompiler.define "SQLITE_THREADSAFE=1"
|
||||
cCompiler.define "SQLITE_DISABLE_LFS"
|
||||
cCompiler.define "SQLITE_OMIT_UTF16"
|
||||
@ -63,8 +64,9 @@ model {
|
||||
cCompiler.define "SQLITE_OMIT_TCL_VARIABLE"
|
||||
cCompiler.define "SQLITE_OMIT_DEPRECATED"
|
||||
|
||||
cppCompiler.args "-I$projectDir/src"
|
||||
cppCompiler.define "SQLITE_THREADSAFE=1"
|
||||
cCompiler.define "SQLITE_DISABLE_LFS"
|
||||
cppCompiler.define "SQLITE_DISABLE_LFS"
|
||||
cppCompiler.define "SQLITE_OMIT_UTF16"
|
||||
cppCompiler.define "SQLITE_OMIT_PROGRESS_CALLBACK"
|
||||
cppCompiler.define "SQLITE_OMIT_COMPLETE"
|
||||
|
@ -16,7 +16,7 @@ if (os.windows) {
|
||||
include ':Data'
|
||||
// SQL not ready yet
|
||||
include ':Data:ODBC'
|
||||
//include ':Data:SQLite'
|
||||
include ':Data:SQLite'
|
||||
include ':Data:MySQL'
|
||||
include ':Zip'
|
||||
include ':PageCompiler'
|
||||
@ -41,7 +41,7 @@ if (os.windows) {
|
||||
}
|
||||
include ':Data:testsuite'
|
||||
include ':Data:ODBC:testsuite'
|
||||
//include ':Data:SQLite:testsuite'
|
||||
include ':Data:SQLite:testsuite'
|
||||
include ':Data:MySQL:testsuite'
|
||||
include ':MongoDB:testsuite'
|
||||
include ':Redis:testsuite'
|
||||
|
Loading…
x
Reference in New Issue
Block a user