mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
Readd pocos dependency
This commit is contained in:
parent
ba3f143295
commit
22cfa2d6c8
17
build.gradle
17
build.gradle
@ -724,21 +724,6 @@ subprojects {
|
||||
tasks.withType(RunTestExecutable) {
|
||||
args test
|
||||
}
|
||||
task showCompilerOutput {
|
||||
doLast {
|
||||
FileTree tree = fileTree('gradle').include('**/output.txt')
|
||||
// Iterate over the contents of a tree
|
||||
tree.each {File file ->
|
||||
println 'Content of file ' + file + ':\n'
|
||||
println file.text
|
||||
}
|
||||
}
|
||||
}
|
||||
/*
|
||||
tasks.withType(CppCompile) {
|
||||
finalizedBy showCompilerOutput
|
||||
}
|
||||
*/
|
||||
}
|
||||
task pocos() {
|
||||
def Set<Task> tts = project.getTasksByName('poco', true)
|
||||
@ -802,7 +787,7 @@ task zipDoc(type: Zip) {
|
||||
def candle(VSYEAR, VERSION, target, os) {
|
||||
return tasks.create("Candle-${VSYEAR}-${VERSION}-${target}", Exec) {
|
||||
dependsOn ':pocos'
|
||||
//dependsOn ':pocoDoc'
|
||||
dependsOn ':pocoDoc'
|
||||
executable "${WiXHome}/bin/Candle.exe"
|
||||
workingDir "packaging/Windows/WiX"
|
||||
args "-arch", "${target}"
|
||||
|
Loading…
Reference in New Issue
Block a user