ea4476770a
Recreation of github PR https://github.com/ROCm-Developer-Tools/hip-tests/pull/319, Change-Id: I6024fd5172a9765756938601a30ed0469b5f1d5b
25 lines
760 B
CMake
25 lines
760 B
CMake
# Common Tests - Test independent of all platforms
|
|
# moved hipDeviceGetP2PAttribute.cc from /catch/unit/device to
|
|
# /catch/unit/p2p folder and its dependent files.
|
|
set(TEST_SRC
|
|
hipDeviceGetP2PAttribute.cc
|
|
)
|
|
|
|
# only for AMD
|
|
if(HIP_PLATFORM MATCHES "amd")
|
|
set(AMD_SRC
|
|
hipP2pLinkTypeAndHopFunc.cc
|
|
)
|
|
set(TEST_SRC ${TEST_SRC} ${AMD_SRC})
|
|
endif()
|
|
|
|
set_source_files_properties(hipDeviceGetP2PAttribute.cc PROPERTIES COMPILE_FLAGS -std=c++17)
|
|
|
|
add_executable(hipDeviceGetP2PAttribute_exe EXCLUDE_FROM_ALL hipDeviceGetP2PAttribute_exe.cc)
|
|
|
|
hip_add_exe_to_target(NAME p2pTests
|
|
TEST_SRC ${TEST_SRC}
|
|
TEST_TARGET_NAME build_tests)
|
|
|
|
add_dependencies(build_tests hipDeviceGetP2PAttribute_exe)
|