llvm-project/offload/tools/CMakeLists.txt
Joseph Huber c4017cda00
[Offload][NFC] Remove header license in CMake files (#92544)
Summary:
No other project has these in the CMake itself, and they're wildly
inconsistent even within the project. These don't really add anything so
I think they should be removed.
2024-05-17 09:05:03 -05:00

17 lines
480 B
CMake

set(OPENMP_TOOLS_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}" CACHE PATH
"Path for binary subdirectory (defaults to '${CMAKE_INSTALL_BINDIR}')")
mark_as_advanced(OPENMP_TOOLS_INSTALL_DIR)
# Move these macros to AddOpenMP if such a CMake module is ever created.
macro(add_openmp_tool name)
llvm_add_tool(OPENMP ${ARGV})
endmacro()
macro(add_openmp_tool_symlink name)
llvm_add_tool_symlink(OPENMP ${ARGV})
endmacro()
add_subdirectory(deviceinfo)
add_subdirectory(kernelreplay)