[llvm] [ORC-RT] Initial check-in for a new, top-level ORC runtime project. (PR #113499)
Chris B via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 31 08:28:47 PDT 2024
================
@@ -0,0 +1,41 @@
+# CMake build for ORC-RT.
+
+#===============================================================================
+# Setup Project
+#===============================================================================
+
+cmake_minimum_required(VERSION 3.20.0)
+
+set(LLVM_COMMON_CMAKE_UTILS ${CMAKE_CURRENT_SOURCE_DIR}/../cmake)
+include(${LLVM_COMMON_CMAKE_UTILS}/Modules/CMakePolicy.cmake
+ NO_POLICY_SCOPE)
+
+project(LibOrcRT LANGUAGES C CXX ASM)
+
+include(GNUInstallDirs)
+
+#===============================================================================
+# Setup CMake Options
+#===============================================================================
+
+option(ORC_RT_INCLUDE_DOCS "Build the ORC-RT documentation." ${ORC_RT_INCLUDE_DOCS})
----------------
llvm-beanz wrote:
What is the default value for this? It looks like it is defaulting to itself, which will be unset on the initial run.
https://github.com/llvm/llvm-project/pull/113499
More information about the llvm-commits
mailing list