mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 00:16:30 +00:00

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.
17 lines
480 B
CMake
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)
|