Skip to content

Commit

Permalink
Fix issue with image definitions in build.gradle missing cmake new dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcferretti committed Jul 18, 2024
1 parent 67cd6a1 commit ab6b151
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cpp-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def buildCppClientImage = Docker.registerDockerTask(project, 'cppClient') {
include 'cpp-tests-to-junit.sh'
include 'build-dependencies.sh'
include 'deephaven/CMakeLists.txt'
include 'deephaven/cmake/**'
include 'deephaven/dhcore/**'
include 'deephaven/dhclient/**'
include 'deephaven/examples/**'
Expand All @@ -87,6 +88,7 @@ def buildCppClientImage = Docker.registerDockerTask(project, 'cppClient') {
${prefix}/log
""")
copyFile('deephaven/CMakeLists.txt', "${prefix}/src/deephaven/")
copyFile('deephaven/cmake/', "${prefix}/src/deephaven/cmake/")
copyFile('deephaven/dhcore/', "${prefix}/src/deephaven/dhcore/")
copyFile('deephaven/dhclient/', "${prefix}/src/deephaven/dhclient/")
copyFile('deephaven/examples/', "${prefix}/src/deephaven/examples/")
Expand Down

0 comments on commit ab6b151

Please sign in to comment.