mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-12-25 14:57:20 +00:00
* Backport of feature-gradle Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr> * Replace '/' by '\' to comply with DOS path Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr> * Cleanup Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr> * Put environment setting at the Exec task. Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr> * Use standard release Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr> * Updated mkdoc configuration Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr> * Remove lines guarded by POCO_ENABLE_CPP11 Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr> * Merge remote-tracking branch 'origin/develop' into develop * Fix NuGet & Wix input dependencies file set. Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr> * Remaining fixes for Data2SQL switch. * Use $global:LastExitCode instead of a local LastExitCode
57 lines
1.7 KiB
Groovy
57 lines
1.7 KiB
Groovy
model {
|
|
components {
|
|
download(NativeExecutableSpec) {
|
|
sources {
|
|
cpp.source { srcDir 'dict/src' include '**/*.cpp' }
|
|
cpp.lib project: ':Net', library: 'Net'
|
|
cpp.lib project: ':NetSSL_OpenSSL', library: 'NetSSL'
|
|
cpp.lib project: ':Crypto', library: 'Crypto'
|
|
cpp.lib library: 'crypto'
|
|
cpp.lib library: 'ssl'
|
|
cpp.lib project: ':Util', library: 'Util'
|
|
cpp.lib project: ':Foundation', library: 'Foundation'
|
|
}
|
|
}
|
|
HTTPSTimeServer(NativeExecutableSpec) {
|
|
sources {
|
|
cpp.source { srcDir 'download/src' include '**/*.cpp' }
|
|
cpp.lib project: ':Net', library: 'Net'
|
|
cpp.lib project: ':NetSSL_OpenSSL', library: 'NetSSL'
|
|
cpp.lib project: ':Crypto', library: 'Crypto'
|
|
cpp.lib library: 'crypto'
|
|
cpp.lib library: 'ssl'
|
|
cpp.lib project: ':Util', library: 'Util'
|
|
cpp.lib project: ':Foundation', library: 'Foundation'
|
|
}
|
|
}
|
|
Mail(NativeExecutableSpec) {
|
|
sources {
|
|
cpp.source { srcDir 'EchoServer/src' include '**/*.cpp' }
|
|
cpp.lib project: ':Net', library: 'Net'
|
|
cpp.lib project: ':NetSSL_OpenSSL', library: 'NetSSL'
|
|
cpp.lib project: ':Crypto', library: 'Crypto'
|
|
cpp.lib library: 'crypto'
|
|
cpp.lib library: 'ssl'
|
|
cpp.lib project: ':Util', library: 'Util'
|
|
cpp.lib project: ':Foundation', library: 'Foundation'
|
|
}
|
|
}
|
|
}
|
|
binaries {
|
|
all {
|
|
}
|
|
withType(SharedLibraryBinarySpec) {
|
|
lib project: ':Foundation', library: 'Foundation', linkage: 'shared'
|
|
}
|
|
withType(StaticLibraryBinarySpec) {
|
|
lib project: ':Foundation', library: 'Foundation', linkage: 'static'
|
|
}
|
|
withType(NativeExecutableSpec) {
|
|
lib project: ':Foundation', library: 'Foundation', linkage: 'static'
|
|
}
|
|
}
|
|
}
|
|
task samples { dependsOn "assemble" }
|
|
|
|
|