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.
15 lines
356 B
CMake
15 lines
356 B
CMake
message(STATUS "Building the llvm-omp-kernel-replay tool")
|
|
|
|
add_openmp_tool(llvm-omp-kernel-replay llvm-omp-kernel-replay.cpp)
|
|
|
|
llvm_update_compile_flags(llvm-omp-kernel-replay)
|
|
|
|
target_include_directories(llvm-omp-kernel-replay PRIVATE
|
|
${LIBOMPTARGET_INCLUDE_DIR}
|
|
)
|
|
target_link_libraries(llvm-omp-kernel-replay PRIVATE
|
|
LLVMSupport
|
|
omp
|
|
omptarget
|
|
)
|