We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 851a4ea commit 4e15458Copy full SHA for 4e15458
build.gradle
@@ -47,6 +47,13 @@ dependencies {
47
task cmakeTask(type: Exec) {
48
workingDir = buildDir
49
executable = 'cmake'
50
+ def buildArgs = [".."]
51
+ if (project.properties.TILEDB_CMAKE_GENERATOR) {
52
+ buildArgs << "-G" << project.properties.TILEDB_CMAKE_GENERATOR
53
+ }
54
+ if (project.properties.TILEDB_CMAKE_ARCHITECTURE) {
55
+ buildArgs << "-A" << project.properties.TILEDB_CMAKE_ARCHITECTURE
56
57
[
58
"TILEDB_GIT_REPOSITORY",
59
"TILEDB_GIT_TAG",
0 commit comments