You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
bdwgc
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm-project
clang
INPUTS
bindings
cmake
caches
modules
AddClang.cmake
CMakeLists.txt
ClangConfig.cmake.in
FindZ3.cmake
ProtobufMutator.cmake
docs
examples
include
lib
runtime
tools
unittests
utils
www
.arcconfig
.clang-format
.clang-tidy
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
INSTALL.txt
LICENSE.TXT
ModuleInfo.txt
NOTES.txt
README.txt
clang-tools-extra
compiler-rt
eng
libcxx
libcxxabi
libunwind
lld
lldb
llvm
nuget
openmp
polly
Directory.Build.props
Directory.Build.targets
NuGet.config
azure-pipelines.yml
build.cmd
build.sh
dir.common.props
global.json
llvm.proj
mxe-Win64.cmake.in
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
llvm
m4
man
mcs
mono
msvc
netcore
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
21 lines
696 B
CMake
21 lines
696 B
CMake
![]() |
# This file allows users to call find_package(Clang) and pick up our targets.
|
||
|
|
||
|
@CLANG_CONFIG_CODE@
|
||
|
|
||
|
find_package(LLVM REQUIRED CONFIG
|
||
|
HINTS "@CLANG_CONFIG_LLVM_CMAKE_DIR@")
|
||
|
|
||
|
set(CLANG_EXPORTED_TARGETS "@CLANG_EXPORTS@")
|
||
|
set(CLANG_CMAKE_DIR "@CLANG_CONFIG_CMAKE_DIR@")
|
||
|
set(CLANG_INCLUDE_DIRS "@CLANG_CONFIG_INCLUDE_DIRS@")
|
||
|
|
||
|
# Provide all our library targets to users.
|
||
|
include("@CLANG_CONFIG_EXPORTS_FILE@")
|
||
|
|
||
|
# By creating clang-tablegen-targets here, subprojects that depend on Clang's
|
||
|
# tablegen-generated headers can always depend on this target whether building
|
||
|
# in-tree with Clang or not.
|
||
|
if(NOT TARGET clang-tablegen-targets)
|
||
|
add_custom_target(clang-tablegen-targets)
|
||
|
endif()
|