summaryrefslogtreecommitdiff
path: root/lldb/tools
diff options
context:
space:
mode:
authorStefan Granitz <stefan.graenitz@gmail.com>2019-01-04 12:46:38 +0000
committerStefan Granitz <stefan.graenitz@gmail.com>2019-01-04 12:46:38 +0000
commit4b6192d07d3476b813084ef65e96dbb131b19e4b (patch)
treef14f05b0f27a7f0495936d0062e65dc44c351e72 /lldb/tools
parent04d1275c61d75a36c9294b4e202f4a2f9dcfc7b1 (diff)
[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
Diffstat (limited to 'lldb/tools')
-rw-r--r--lldb/tools/debugserver/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/CMakeLists.txt b/lldb/tools/debugserver/CMakeLists.txt
index 53f89fd5bda..73f7945a564 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)