Skip to content
Snippets Groups Projects
Commit 705479ac authored by scott snyder's avatar scott snyder
Browse files

AthContainersInterfaces: cmake fix

Add missing dependency on CxxUtils.
parent 4dc2c331
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ endif() ...@@ -15,6 +15,7 @@ endif()
# Declare the package's dependencies: # Declare the package's dependencies:
atlas_depends_on_subdirs( atlas_depends_on_subdirs(
PUBLIC PUBLIC
Control/CxxUtils
${extra_deps} ) ${extra_deps} )
# External dependencies: # External dependencies:
...@@ -26,7 +27,7 @@ atlas_add_library( AthContainersInterfaces ...@@ -26,7 +27,7 @@ atlas_add_library( AthContainersInterfaces
INTERFACE INTERFACE
PUBLIC_HEADERS AthContainersInterfaces PUBLIC_HEADERS AthContainersInterfaces
INCLUDE_DIRS ${Boost_INCLUDE_DIRS} INCLUDE_DIRS ${Boost_INCLUDE_DIRS}
LINK_LIBRARIES ${Boost_LIBRARIES} ${extra_libs} ) LINK_LIBRARIES CxxUtils ${Boost_LIBRARIES} ${extra_libs} )
# Test(s) in the package: # Test(s) in the package:
atlas_add_test( AuxStore_traits_test atlas_add_test( AuxStore_traits_test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment