mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
d993fb09b7
* Update gradle for the Encodings module Signed-off-by: Francis ANDRE <francis.andre.kampbell@orange.fr> * Add new PDF c++ files to VS projects * Update gradle build
41 lines
746 B
Groovy
41 lines
746 B
Groovy
project(":PDF") {
|
|
model {
|
|
components {
|
|
PDF(NativeLibrarySpec) {
|
|
sources {
|
|
c {
|
|
source {
|
|
srcDir 'src'
|
|
include '**/*.c'
|
|
}
|
|
exportedHeaders {
|
|
srcDirs 'include', 'include/Poco/PDF'
|
|
}
|
|
}
|
|
cpp {
|
|
source {
|
|
srcDir 'src'
|
|
include '**/*.cpp'
|
|
}
|
|
exportedHeaders {
|
|
srcDirs 'include', 'include/Poco/PDF'
|
|
}
|
|
lib project: ':Util', library: 'Util'
|
|
lib project: ':XML', library: 'XML'
|
|
lib project: ':Foundation', library: 'Foundation'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
binaries {
|
|
withType(SharedLibraryBinarySpec) {
|
|
if (toolChain in VisualCpp) {
|
|
cppCompiler.define "PDF_EXPORTS"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
task poco { dependsOn "assemble" }
|
|
|