mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 00:56:48 +00:00

Summary: This isn't `libomptarget` anymore, and these messages were always unnecessary because no other project uses these prefixed messages. The effect of this is that no longer will the logs have `LIBOMPTARGET --` in front of everything. We have a message stating when we start building the offload project so it'll still be trivial to find.
12 lines
583 B
CMake
12 lines
583 B
CMake
set(PLUGINS_TEST_COMMON omptarget)
|
|
set(PLUGINS_TEST_SOURCES NextgenPluginsTest.cpp)
|
|
set(PLUGINS_TEST_INCLUDE ${LIBOMPTARGET_INCLUDE_DIR})
|
|
|
|
foreach(PLUGIN IN LISTS LIBOMPTARGET_TESTED_PLUGINS)
|
|
message(STATUS "Building plugin unit tests for ${PLUGIN}")
|
|
add_libompt_unittest("${PLUGIN}.unittests" ${PLUGINS_TEST_SOURCES})
|
|
add_dependencies("${PLUGIN}.unittests" ${PLUGINS_TEST_COMMON} ${PLUGIN})
|
|
target_link_libraries("${PLUGIN}.unittests" PRIVATE ${PLUGINS_TEST_COMMON} ${PLUGIN})
|
|
target_include_directories("${PLUGIN}.unittests" PRIVATE ${PLUGINS_TEST_INCLUDE})
|
|
endforeach()
|