2023-02-03 12:31:39 -06:00
|
|
|
add_definitions(-DAMD_INTERNAL_BUILD=1)
|
|
|
|
|
add_custom_target(tests)
|
|
|
|
|
add_dependencies(tests rocprofiler_tool)
|
2023-07-13 19:48:38 +00:00
|
|
|
add_custom_target(
|
|
|
|
|
check
|
|
|
|
|
COMMAND ${PROJECT_BINARY_DIR}/run_tests.sh
|
|
|
|
|
DEPENDS tests)
|
2023-02-03 12:31:39 -06:00
|
|
|
add_subdirectory(featuretests)
|
|
|
|
|
add_subdirectory(memorytests)
|
2023-04-12 15:10:19 +05:30
|
|
|
add_subdirectory(microbenchmarks)
|
2023-04-12 11:26:18 -05:00
|
|
|
add_subdirectory(HSAToolLibrary)
|
|
|
|
|
add_subdirectory(unittests)
|
2023-07-13 19:48:38 +00:00
|
|
|
configure_file(run_tests.sh ${PROJECT_BINARY_DIR} COPYONLY)
|