I download gradle 2.1 and find gradle only support CUnit. and when will gradle support gtest (Google C++ Unit Test framework)?

I’m dev engineer from symantec, we hope to use gradle as the build framework now, but we have many C++ code using gtest to do unit test. How can I integrate gtest (Google C++ unit test) to gradle?

As of Gradle 2.2, there’s no built-in support for GoogleTest.

To add this support, you’d need to implement a plugin similar to the built-in ‘cunit’ plugin. This isn’t trivial, but we’re hoping to make this easier in the future.