Skip to content
This repository has been archived by the owner on Sep 21, 2020. It is now read-only.

Commit

Permalink
Only include .cpp files in testsuite build.
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterJohnson committed Sep 7, 2017
1 parent 12b2efa commit 8125a17
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,14 @@ model {
testSuites {
ntcoreTestingBaseTest {
sources {
cpp.source.srcDir 'src/test/native/cpp'
cpp.exportedHeaders {
srcDirs 'src/test/native/include', 'src/main/native/cpp'
cpp {
source {
srcDirs 'src/test/native/cpp'
include '**/*.cpp'
}
exportedHeaders {
srcDirs 'src/test/native/include', 'src/main/native/cpp'
}
}
}
}
Expand Down

0 comments on commit 8125a17

Please sign in to comment.