mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
29 lines
622 B
Groovy
29 lines
622 B
Groovy
model {
|
|
components {
|
|
File2page(NativeExecutableSpec) {
|
|
baseName 'f2pc'
|
|
sources {
|
|
cpp {
|
|
source {
|
|
srcDir 'src'
|
|
include '**/*.cpp'
|
|
}
|
|
exportedHeaders {
|
|
srcDir 'include'
|
|
}
|
|
lib project: ':Net', library: 'Net'
|
|
lib project: ':Util', library: 'Util'
|
|
lib project: ':Foundation', library: 'Foundation'
|
|
}
|
|
}
|
|
binaries.withType(NativeExecutableSpec) {
|
|
lib project: ':Net', library: 'Net', linkage: 'shared'
|
|
lib project: ':Util', library: 'Util', linkage: 'shared'
|
|
lib project: ':Foundation', library: 'Foundation', linkage: 'shared'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|