mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
vs2015 is detecting, and printing an error that actually makes sense if it is not. Finally, added a .gitreview file, so that git-review will be able to autodetect the host and project for ntcore automatically. Change-Id: I3cb9910d03d4742619770c91c06e3d5d1ee0f031
60 lines
2.0 KiB
Groovy
60 lines
2.0 KiB
Groovy
import org.apache.tools.ant.taskdefs.condition.Os
|
|
apply plugin: 'cpp'
|
|
apply plugin: 'google-test'
|
|
apply plugin: 'visual-studio'
|
|
|
|
model {
|
|
toolChains {
|
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
visualCpp(VisualCpp) {
|
|
def vs14Dir = file('C:\\Program Files (x86)\\Microsoft Visual Studio 14.0')
|
|
// If vs2015 is installed, fall back to vs2013 for now, until Gradle pulls in the right
|
|
// includes for the win10 sdk.
|
|
if (vs14Dir.exists()) {
|
|
def vs12Dir = file('C:\\Program Files (x86)\\Microsoft Visual Studio 12.0')
|
|
if (!vs12Dir.exists()) {
|
|
throw new GradleException('Compilation with VS 2015 is not currently supported by Gradle. Please install VS 2013, or use the CMake build option.')
|
|
}
|
|
installDir = vs12Dir
|
|
}
|
|
}
|
|
}
|
|
}
|
|
components {
|
|
tests(NativeLibrarySpec) {
|
|
sources {
|
|
cpp {
|
|
source {
|
|
srcDirs = ["unit", "../src"]
|
|
includes = ["**/*.cpp"]
|
|
}
|
|
exportedHeaders {
|
|
srcDirs = ["../include", "../src", "../gmock/include", "../gmock/gtest/include"]
|
|
includes = ["**/*.h"]
|
|
}
|
|
}
|
|
}
|
|
binaries.all {
|
|
lib project: ':gmock', library: "gmock", linkage: "static"
|
|
if (toolChain in Gcc) {
|
|
cppCompiler.args '-std=c++1y', '-Wformat=2', '-Wall', '-Wextra', '-Werror', '-pedantic', '-Wno-unused-parameter'
|
|
linker.args '-pthread'
|
|
}
|
|
if (toolChain in VisualCpp) {
|
|
cppCompiler.args '/EHsc', '/DNOMINMAX', '/D_SCL_SECURE_NO_WARNINGS', '/D_WINSOCK_DEPRECATED_NO_WARNINGS'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
binaries.withType(GoogleTestTestSuiteBinarySpec) {
|
|
lib project: ':gmock', library: "gmock", linkage: "static"
|
|
if (targetPlatform.operatingSystem.linux) {
|
|
cppCompiler.args '-pthread', '-std=c++1y'
|
|
linker.args '-pthread'
|
|
} else {
|
|
cppCompiler.args '/EHsc', '/DNOMINMAX', '/D_SCL_SECURE_NO_WARNINGS', '/D_WINSOCK_DEPRECATED_NO_WARNINGS'
|
|
}
|
|
}
|
|
|