Skip to content
Snippets Groups Projects
Commit 5bebfc22 authored by Attila Krasznahorkay's avatar Attila Krasznahorkay
Browse files

Taught WorkDir how to use AtlasHIP.

parent 7fb70361
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,14 @@ check_language( CUDA )
if( CMAKE_CUDA_COMPILER )
enable_language( CUDA )
endif()
find_package( AtlasHIP QUIET )
if( AtlasHIP_FOUND )
include( AtlasCheckLanguage )
atlas_check_language( HIP )
if( CMAKE_HIP_COMPILER )
enable_language( HIP )
endif()
endif()
# Set up where to find the AthenaPoolUtilitiesTest CMake code.
if( IS_DIRECTORY
......
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