2016-09-06 20:16:19 +00:00
|
|
|
# `Demangle', `Support' and `TableGen' libraries are added on the top-level
|
|
|
|
# CMakeLists.txt
|
2011-02-18 22:06:14 +00:00
|
|
|
|
2013-01-02 09:10:48 +00:00
|
|
|
add_subdirectory(IR)
|
2017-08-21 22:57:06 +00:00
|
|
|
add_subdirectory(FuzzMutate)
|
2020-08-11 18:44:22 +00:00
|
|
|
add_subdirectory(InterfaceStub)
|
2013-03-26 02:25:37 +00:00
|
|
|
add_subdirectory(IRReader)
|
2011-02-18 22:06:14 +00:00
|
|
|
add_subdirectory(CodeGen)
|
2017-06-07 03:48:56 +00:00
|
|
|
add_subdirectory(BinaryFormat)
|
2011-02-18 22:06:14 +00:00
|
|
|
add_subdirectory(Bitcode)
|
2019-07-03 22:40:07 +00:00
|
|
|
add_subdirectory(Bitstream)
|
2019-12-20 16:23:31 +00:00
|
|
|
add_subdirectory(DWARFLinker)
|
2020-04-20 10:39:32 +00:00
|
|
|
add_subdirectory(Extensions)
|
[OpenMP][NFCI] Introduce llvm/IR/OpenMPConstants.h
Summary:
The new OpenMPConstants.h is a location for all OpenMP related constants
(and helpers) to live.
This patch moves the directives there (the enum OpenMPDirectiveKind) and
rewires Clang to use the new location.
Initially part of D69785.
Reviewers: kiranchandramohan, ABataev, RaviNarayanaswamy, gtbercea, grokos, sdmitriev, JonChesterfield, hfinkel, fghanim
Subscribers: jholewinski, ppenzin, penzn, llvm-commits, cfe-commits, jfb, guansong, bollu, hiraditya, mgorny
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D69853
2019-11-05 04:00:49 +00:00
|
|
|
add_subdirectory(Frontend)
|
2011-02-18 22:06:14 +00:00
|
|
|
add_subdirectory(Transforms)
|
|
|
|
add_subdirectory(Linker)
|
|
|
|
add_subdirectory(Analysis)
|
2013-09-24 23:52:22 +00:00
|
|
|
add_subdirectory(LTO)
|
2011-02-18 22:06:14 +00:00
|
|
|
add_subdirectory(MC)
|
2018-12-17 08:08:31 +00:00
|
|
|
add_subdirectory(MCA)
|
2011-02-18 22:06:14 +00:00
|
|
|
add_subdirectory(Object)
|
2016-03-01 19:15:06 +00:00
|
|
|
add_subdirectory(ObjectYAML)
|
2012-12-05 00:29:32 +00:00
|
|
|
add_subdirectory(Option)
|
2019-03-05 20:45:17 +00:00
|
|
|
add_subdirectory(Remarks)
|
2011-09-13 19:42:23 +00:00
|
|
|
add_subdirectory(DebugInfo)
|
2011-02-18 22:06:14 +00:00
|
|
|
add_subdirectory(ExecutionEngine)
|
|
|
|
add_subdirectory(Target)
|
|
|
|
add_subdirectory(AsmParser)
|
2014-01-31 23:46:14 +00:00
|
|
|
add_subdirectory(LineEditor)
|
2014-03-21 17:24:48 +00:00
|
|
|
add_subdirectory(ProfileData)
|
2015-03-07 09:02:36 +00:00
|
|
|
add_subdirectory(Passes)
|
2018-12-03 19:30:52 +00:00
|
|
|
add_subdirectory(TextAPI)
|
2017-05-13 22:06:46 +00:00
|
|
|
add_subdirectory(ToolDrivers)
|
2017-01-11 06:39:09 +00:00
|
|
|
add_subdirectory(XRay)
|
2019-07-11 22:08:35 +00:00
|
|
|
if (LLVM_INCLUDE_TESTS)
|
|
|
|
add_subdirectory(Testing)
|
|
|
|
endif()
|
2017-07-26 01:21:55 +00:00
|
|
|
add_subdirectory(WindowsManifest)
|