From d0dc161f62f783a6c48db21a601c1b062ce0f2d0 Mon Sep 17 00:00:00 2001 From: Stefan Granitz Date: Fri, 4 Jan 2019 12:46:38 +0000 Subject: [PATCH] [CMake] Move debugserver options to separate debugserverConfig.cmake Summary: One place for debugserver options, analog to LLDBConfig for LLDB options (see D55317). It was discussed in earlier reviews already, e.g. D55013. Reviewers: JDevlieghere, aprantl, xiaobai Reviewed By: aprantl, xiaobai Subscribers: mgorny, lldb-commits, #lldb Differential Revision: https://reviews.llvm.org/D55320 llvm-svn: 350390 --- lldb/cmake/modules/debugserverConfig.cmake | 3 +++ lldb/tools/debugserver/CMakeLists.txt | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 lldb/cmake/modules/debugserverConfig.cmake diff --git a/lldb/cmake/modules/debugserverConfig.cmake b/lldb/cmake/modules/debugserverConfig.cmake new file mode 100644 index 0000000..3b716ca8 --- /dev/null +++ b/lldb/cmake/modules/debugserverConfig.cmake @@ -0,0 +1,3 @@ +# Duplicate options from LLDBConfig that are relevant for debugserver Standalone builds. + +option(LLDB_USE_ENTITLEMENTS "When code signing, use entitlements if available" ON) diff --git a/lldb/tools/debugserver/CMakeLists.txt b/lldb/tools/debugserver/CMakeLists.txt index 53f89fd..73f7945 100644 --- a/lldb/tools/debugserver/CMakeLists.txt +++ b/lldb/tools/debugserver/CMakeLists.txt @@ -10,13 +10,12 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) ) include(LLDBStandalone) + include(debugserverConfig) include(AddLLDB) set(LLDB_SOURCE_DIR "${CMAKE_SOURCE_DIR}/../../") include_directories(${LLDB_SOURCE_DIR}/include) - option(LLDB_USE_ENTITLEMENTS "When code signing, use entitlements if available" ON) - # lldb-suite is a dummy target that encompasses all the necessary tools and # libraries for building a fully-functioning liblldb. add_custom_target(lldb-suite) -- 2.7.4