Skip to content

Commit

Permalink
Merge pull request #53 from LLNL/bugfix/zagaris2/fix-bgq-build
Browse files Browse the repository at this point in the history
bugfix/zagaris2/fix-bqq-build
  • Loading branch information
gzagaris committed Jun 21, 2019
2 parents 4f3f511 + 71065f9 commit 47fd6e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/axom/spin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ set( spin_sources
################################################################
# Specify Spin headers/sources that depend on RAJA and Umpire
################################################################
if ( ${RAJA_FOUND} AND ${UMPIRE_FOUND} )
if ( RAJA_FOUND AND UMPIRE_FOUND )

set( spin_headers
${spin_headers}
BVH.hpp
execution_space.hpp

## internal
internal/linear_bvh/aabb.hpp
Expand Down
4 changes: 2 additions & 2 deletions src/axom/spin/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ foreach ( test ${spin_tests} )

endforeach()

if ( ${RAJA_FOUND} AND ${UMPIRE_FOUND} )
if ( RAJA_FOUND AND UMPIRE_FOUND )

blt_add_executable(
NAME spin_execution_space_test
Expand All @@ -65,4 +65,4 @@ if ( ${RAJA_FOUND} AND ${UMPIRE_FOUND} )
FOLDER axom/spin/tests
)

endif()
endif()

0 comments on commit 47fd6e5

Please sign in to comment.