[flang] Add new global CMakefile infrastructure with examples
authorStephane Chauveau <stephane@chauveau-central.net>
Thu, 8 Feb 2018 13:33:30 +0000 (14:33 +0100)
committerGitHub <noreply@github.com>
Fri, 9 Feb 2018 09:09:20 +0000 (10:09 +0100)
commitc27603ec9cbc6ff5475a2e392937bb5cbb456d70
tree0f4044c3a7e19730b8e8901f83fac27fd283cbc8
parentc0d92ef56616f395bec937703de9d8c1d25542a1
[flang] Add new global CMakefile infrastructure with examples

Original-commit: flang-compiler/f18@81b91f327052cd0596e96af9c33b2d0e221d10f5
Reviewed-on: https://github.com/flang-compiler/f18/pull/6
Tree-same-pre-rewrite: false
34 files changed:
flang/cmake/modules/AddFlang.cmake [new file with mode: 0644]
flang/cmake/modules/CMakeLists.txt [new file with mode: 0644]
flang/cmake/modules/FindZ3.cmake [new file with mode: 0644]
flang/cmake/modules/FlangConfig.cmake.in [new file with mode: 0644]
flang/include/CMakeLists.txt [new file with mode: 0644]
flang/include/flang/Basic/CMakeLists.txt [new file with mode: 0644]
flang/include/flang/Basic/Diagnostic.td [new file with mode: 0644]
flang/include/flang/Basic/DiagnosticCategories.td [new file with mode: 0644]
flang/include/flang/Basic/DiagnosticCommonKinds.td [new file with mode: 0644]
flang/include/flang/Basic/DiagnosticDocs.td [new file with mode: 0644]
flang/include/flang/Basic/DiagnosticGroups.td [new file with mode: 0644]
flang/include/flang/Basic/LLVM.h [new file with mode: 0644]
flang/include/flang/Basic/Version.h [new file with mode: 0644]
flang/include/flang/Basic/Version.inc.in [new file with mode: 0644]
flang/include/flang/CMakeLists.txt [new file with mode: 0644]
flang/include/flang/Config/config.h.cmake [new file with mode: 0644]
flang/include/flang/Sema/Scope.h [new file with mode: 0644]
flang/include/flang/Sema/Sema.h [new file with mode: 0644]
flang/lib/Basic/CMakeLists.txt [new file with mode: 0644]
flang/lib/Basic/LangOptions.cpp [new file with mode: 0644]
flang/lib/Basic/Version.cpp [new file with mode: 0644]
flang/lib/CMakeLists.txt [new file with mode: 0644]
flang/lib/Sema/CMakeLists.txt [new file with mode: 0644]
flang/lib/Sema/Scope.cpp [new file with mode: 0644]
flang/lib/Sema/Sema.cpp [new file with mode: 0644]
flang/lib/Sema/SemaExpr.cpp [new file with mode: 0644]
flang/tools/CMakeLists.txt [new file with mode: 0644]
flang/tools/flang-info/CMakeLists.txt [new file with mode: 0644]
flang/tools/flang-info/FlangInfo.cpp [new file with mode: 0644]
flang/utils/TableGen/CMakeLists.txt [new file with mode: 0644]
flang/utils/TableGen/FlangDiagnosticsEmitter.cpp [new file with mode: 0644]
flang/utils/TableGen/FlangOptionDocEmitter.cpp [new file with mode: 0644]
flang/utils/TableGen/TableGen.cpp [new file with mode: 0644]
flang/utils/TableGen/TableGenBackends.h [new file with mode: 0644]