poco/MongoDB/build.gradle

38 lines
580 B
Groovy
Raw Normal View History

2017-10-31 09:07:53 +01:00
model {
components {
MongoDB(NativeLibrarySpec) {
sources {
rc {
source {
srcDir '..'
include 'DLLVersion.rc'
}
}
cpp {
source {
srcDir 'src'
include '**/*.cpp'
}
exportedHeaders {
srcDir 'include'
}
lib project: ':Net', library: 'Net'
lib project: ':Foundation', library: 'Foundation'
}
}
}
}
binaries {
all {
}
withType(SharedLibraryBinarySpec) {
if (toolChain in VisualCpp) {
cppCompiler.define "MongoDB_EXPORTS"
}
}
}
}
task poco { dependsOn "assemble" }