Skip to content

Commit

Permalink
replacing bedrock with bedrock-module-api
Browse files Browse the repository at this point in the history
  • Loading branch information
mdorier committed Jul 3, 2024
1 parent 5f04068 commit 8c59686
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ find_package (spdlog REQUIRED)
find_package (fmt REQUIRED)
# search of bedrock if needed
if (${ENABLE_BEDROCK})
find_package (bedrock REQUIRED)
find_package (bedrock-module-api REQUIRED)
endif ()

# library version set here (e.g. for shared libs).
Expand Down
2 changes: 1 addition & 1 deletion spack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spack:
- spdlog
- fmt
- tclap
- mochi-bedrock ~ssg ~abtio
- mochi-bedrock-module-api
concretizer:
unify: true
reuse: true
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ if (${ENABLE_BEDROCK})
# bedrock module library
add_library (alpha-bedrock-module ${module-src-files})
add_library (alpha::bedrock ALIAS alpha-bedrock-module)
target_link_libraries (alpha-bedrock-module alpha-server alpha-client bedrock-server coverage_config)
target_link_libraries (alpha-bedrock-module alpha-server alpha-client bedrock::module-api coverage_config)
target_include_directories (alpha-bedrock-module PUBLIC $<INSTALL_INTERFACE:include>)
target_include_directories (alpha-bedrock-module BEFORE PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/../include>)
Expand Down
2 changes: 1 addition & 1 deletion tests/spack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spack:
- spdlog
- fmt
- tclap
- mochi-bedrock
- mochi-bedrock-module-api
concretizer:
unify: true
reuse: true
Expand Down

0 comments on commit 8c59686

Please sign in to comment.