mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
75 lines
2.0 KiB
Groovy
75 lines
2.0 KiB
Groovy
|
import org.gradle.nativeplatform.test.cppunit.CppUnitTestSuiteSpec
|
||
|
|
||
|
model {
|
||
|
components {
|
||
|
withType(NativeComponentSpec) {
|
||
|
binaries.withType(NativeBinarySpec) {
|
||
|
if (buildType == buildTypes.debug) {
|
||
|
if (it instanceof NativeExecutableBinarySpec) {
|
||
|
executable.file = toLocalBin(appendDebugSuffix(executable.file), targetPlatform)
|
||
|
}
|
||
|
} else
|
||
|
if (buildType == buildTypes.release) {
|
||
|
if (it instanceof NativeExecutableBinarySpec) {
|
||
|
executable.file = toLocalBin(executable.file, targetPlatform)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
TestSuite(NativeLibrarySpec) {
|
||
|
sources {
|
||
|
cpp {
|
||
|
source {
|
||
|
srcDir 'src'
|
||
|
include '**/*.cpp'
|
||
|
exclude '*Driver.cpp'
|
||
|
}
|
||
|
exportedHeaders {
|
||
|
srcDir 'src'
|
||
|
}
|
||
|
lib project: ':CppUnit', library: 'CppUnit'
|
||
|
lib library: 'crypto'
|
||
|
lib library: 'ssl'
|
||
|
lib project: ':Crypto', library: 'Crypto'
|
||
|
lib project: ':Net', library: 'Net'
|
||
|
lib project: ':NetSSL_OpenSSL', library: 'NetSSL'
|
||
|
lib project: ':Util', library: 'Util'
|
||
|
lib project: ':JSON', library: 'JSON'
|
||
|
lib project: ':XML', library: 'XML'
|
||
|
lib project: ':Foundation', library: 'Foundation'
|
||
|
}
|
||
|
}
|
||
|
binaries.all {
|
||
|
if (targetPlatform.operatingSystem.windows) {
|
||
|
lib library: 'WS2_32', linkage: 'static'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
testSuites {
|
||
|
NetSSLTestSuite(org.gradle.nativeplatform.test.cppunit.CppUnitTestSuiteSpec) {
|
||
|
testing $.components.TestSuite
|
||
|
}
|
||
|
}
|
||
|
binaries {
|
||
|
withType(org.gradle.nativeplatform.test.cppunit.CppUnitTestSuiteBinarySpec) {
|
||
|
lib project: ':CppUnit', library: 'CppUnit', linkage: 'shared'
|
||
|
if (toolChain in VisualCpp) {
|
||
|
if (buildType == buildTypes.debug) {
|
||
|
cCompiler.args "/MDd"
|
||
|
cppCompiler.args "/MDd"
|
||
|
} else
|
||
|
if (buildType == buildTypes.release) {
|
||
|
cCompiler.args "/MD"
|
||
|
cppCompiler.args "/MD"
|
||
|
} else {
|
||
|
throw new GradleException("Unknown buildType" + buildType)
|
||
|
}
|
||
|
}
|
||
|
if (toolChain in Gcc) {
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
task testsuite { dependsOn "assemble" }
|