FalconLibraryCPP/libs/build.gradle
2019-06-26 14:47:47 -04:00

47 lines
1.5 KiB
Groovy

apply plugin: "cpp"
ext.libroot = new File(rootProject.rootDir, "libs")
ext.gtest_root = new File(libroot, "googletest/googletest")
ext.gbench_root = new File(libroot, "benchmark")
model {
components {
googleTest(NativeLibrarySpec) {
sources.cpp {
source {
srcDir new File(gtest_root, "src")
include "**/gtest-all.cc"
}
exportedHeaders {
srcDirs gtest_root, new File(gtest_root, "include")
include "**/*.hpp", "**/*.h"
}
}
}
googleBench(NativeLibrarySpec) {
binaries.all {
if (toolChain instanceof GccCompatibleToolChain) {
cppCompiler.args << '-std=c++14' << '-Wno-deprecated-declarations'
linker.args << '-pthread'
} else {
// MSVC
cppCompiler.args << '/std:c++14'
linker.args << 'shlwapi.lib'
}
}
sources.cpp {
source {
srcDir new File(gbench_root, "src")
include "**/*.cc"
exclude "**/benchmark_main.cc"
}
exportedHeaders {
srcDirs new File(gbench_root, "src"), new File(gbench_root, "include")
include "**/*.hpp", "**/*.h"
}
lib project: ':libs', library: "googleTest", linkage: "static"
}
}
}
}