forked from deephaven/deephaven-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cpp-client): deephavenConfig.cmake provides transitive dependenci…
…es (deephaven#5792) I modified the deephaven_enterprise C++ client cmake code to remove the explicit requirements for dependencies that are only transitive and PRIVATE from deephaven (core) C++ client cmake (eg, Immer). The new config file allowed those to be removed in the DHE side. The new code in the toplevel CMakeLists.txt for deephaven was inspired by the cmake doc here: https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#creating-packages and https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#creating-a-package-configuration-file
- Loading branch information
1 parent
d9d1b71
commit f52012e
Showing
6 changed files
with
53 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
include(CMakeFindDependencyMacro) | ||
find_dependency(Arrow 16.0.0) | ||
find_dependency(ArrowFlight 16.0.0) | ||
find_dependency(Immer) | ||
find_dependency(Protobuf) | ||
find_dependency(gRPC 1.63.0) | ||
find_dependency(Threads) | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/deephavenTargets.cmake") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters