Skip to content

Commit 28f7f4a

Browse files
Fix naming of boost modules (#11)
* Fix naming of boost modules * Update src/AVEVA/RocksDB/Plugin/Azure/Impl/aveva-rocksdb-plugin-azure-impl-config.cmake.in Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 4659514 commit 28f7f4a

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

src/AVEVA/RocksDB/Plugin/Azure/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ find_package(azure-storage-blobs-cpp CONFIG REQUIRED)
3333
find_package(RocksDB CONFIG REQUIRED)
3434
find_package(aveva-install-library CONFIG REQUIRED)
3535
target_link_libraries(aveva-rocksdb-plugin-azure PUBLIC
36-
aveva-rocksdb-plugin-core
36+
aveva::rocksdb-plugin-core
3737
aveva::rocksdb-plugin-azure-impl
3838
Azure::azure-storage-blobs
3939
Azure::azure-identity

src/AVEVA/RocksDB/Plugin/Azure/Impl/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ install(TARGETS aveva-rocksdb-plugin-azure-impl
3939
)
4040
find_package(azure-identity-cpp CONFIG REQUIRED)
4141
find_package(azure-storage-blobs-cpp CONFIG REQUIRED)
42-
find_package(Boost CONFIG REQUIRED COMPONENTS log)
42+
find_package(boost_log CONFIG REQUIRED)
4343
find_package(aveva-install-library CONFIG REQUIRED)
4444
target_link_libraries(aveva-rocksdb-plugin-azure-impl PUBLIC
4545
aveva-rocksdb-plugin-core

src/AVEVA/RocksDB/Plugin/Azure/Impl/aveva-rocksdb-plugin-azure-impl-config.cmake.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ set(AVEVA_ROCKSDB_PLUGIN_AZURE_IMPL_VERSION @PROJECT_VERSION@)
55
include(CMakeFindDependencyMacro)
66
find_dependency(azure-identity-cpp REQUIRED)
77
find_dependency(azure-storage-blobs-cpp REQUIRED)
8+
find_dependency(boost_log REQUIRED)
89

910
include(${CMAKE_CURRENT_LIST_DIR}/aveva-rocksdb-plugin-azure-impl-targets.cmake)
1011

src/AVEVA/RocksDB/Plugin/Azure/aveva-rocksdb-plugin-azure-config.cmake.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ set(AVEVA_ROCKSDB_PLUGIN_AZURE_VERSION @PROJECT_VERSION@)
55
include(CMakeFindDependencyMacro)
66
find_dependency(azure-identity-cpp REQUIRED)
77
find_dependency(azure-storage-blobs-cpp REQUIRED)
8+
find_dependency(RocksDB REQUIRED)
89

910
include(${CMAKE_CURRENT_LIST_DIR}/aveva-rocksdb-plugin-azure-targets.cmake)
1011

src/AVEVA/RocksDB/Plugin/Core/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ target_sources(aveva-rocksdb-plugin-core
2727
install(TARGETS aveva-rocksdb-plugin-core
2828
EXPORT
2929
)
30-
find_package(Boost CONFIG REQUIRED COMPONENTS log intrusive)
30+
find_package(boost_log CONFIG REQUIRED)
31+
find_package(boost_intrusive CONFIG REQUIRED)
3132
find_package(aveva-install-library CONFIG REQUIRED)
3233
target_link_libraries(aveva-rocksdb-plugin-core PUBLIC
3334
Boost::log

src/AVEVA/RocksDB/Plugin/Core/aveva-rocksdb-plugin-core-config.cmake.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ set(AVEVA_ROCKSDB_PLUGIN_CORE_VERSION @PROJECT_VERSION@)
33
@PACKAGE_INIT@
44

55
include(CMakeFindDependencyMacro)
6-
find_dependency(Boost REQUIRED COMPONENTS log)
6+
find_dependency(boost_log REQUIRED)
7+
find_dependency(boost_intrusive REQUIRED)
78

89
include(${CMAKE_CURRENT_LIST_DIR}/aveva-rocksdb-plugin-core-targets.cmake)
910

0 commit comments

Comments
 (0)