forked from OSchip/llvm-project
28 lines
924 B
CMake
28 lines
924 B
CMake
##===----------------------------------------------------------------------===##
|
|
#
|
|
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
# See https://llvm.org/LICENSE.txt for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
#
|
|
# Adding omptarget tools
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
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)
|