From a6c1dbd541d93359a7dd8fbcba3d7f0bf77e60c5 Mon Sep 17 00:00:00 2001 From: Oscar Fuentes Date: Sat, 25 Sep 2010 20:43:06 +0000 Subject: [PATCH] New cmake options LLVM_INCLUDE_X (X = {TOOLS, EXAMPLES, TESTS}) for not generating build targets for those parts of the build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114797 91177308-0d34-0410-b5e6-96231b3b80d8 --- CMakeLists.txt | 29 ++++++++++++++++++++--------- docs/CMake.html | 10 ++++++++++ 2 files changed, 30 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7959f65647b..f32ba0c25a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -363,17 +363,28 @@ add_subdirectory(lib/Archive) add_subdirectory(projects) -option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON) -add_subdirectory(tools) - -option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." OFF) -add_subdirectory(examples) +option(LLVM_BUILD_TOOLS + "Build the LLVM tools. If OFF, just generate build targets." ON) +option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON) +if( LLVM_INCLUDE_TOOLS ) + add_subdirectory(tools) +endif() -option(LLVM_BUILD_TESTS "Build LLVM unit tests." OFF) -add_subdirectory(test) -add_subdirectory(utils/unittest) -add_subdirectory(unittests) +option(LLVM_BUILD_EXAMPLES + "Build the LLVM example programs. If OFF, just generate build targets." OFF) +option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON) +if( LLVM_INCLUDE_EXAMPLES ) + add_subdirectory(examples) +endif() +option(LLVM_BUILD_TESTS + "Build LLVM unit tests. If OFF, just generate build targes." OFF) +option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON) +if( LLVM_INCLUDE_TESTS ) + add_subdirectory(test) + add_subdirectory(utils/unittest) + add_subdirectory(unittests) +endif() add_subdirectory(cmake/modules) diff --git a/docs/CMake.html b/docs/CMake.html index ca0b50f628e..491f0afd8b9 100644 --- a/docs/CMake.html +++ b/docs/CMake.html @@ -257,11 +257,21 @@ with a makefile-based system executing make llvm-as on the root of your build directory. +
LLVM_INCLUDE_TOOLS:BOOL
+
Generate build targets for the LLVM tools. Defaults to + ON. You can use that option for disabling the generation of build + targets for the LLVM tools.
+
LLVM_BUILD_EXAMPLES:BOOL
Build LLVM examples. Defaults to OFF. Targets for building each example are generated in any case. See documentation for LLVM_BUILD_TOOLS above for more details.
+
LLVM_INCLUDE_EXAMPLES:BOOL
+
Generate build targets for the LLVM examples. Defaults to + ON. You can use that option for disabling the generation of build + targets for the LLVM examples.
+
LLVM_ENABLE_THREADS:BOOL
Build with threads support, if available. Defaults to ON.
-- 2.34.1