diff options
author | Stefan Granitz <stefan.graenitz@gmail.com> | 2019-08-01 10:33:44 +0000 |
---|---|---|
committer | Stefan Granitz <stefan.graenitz@gmail.com> | 2019-08-01 10:33:44 +0000 |
commit | ed38be87fcea5eb5626038de543449f46b75955d (patch) | |
tree | 5629044428fe787cc4e221f4c0ae919bbc6d30d3 | |
parent | 5391f158c2366ae5a16b926b6213c79da22621b7 (diff) | |
download | bcm5719-llvm-ed38be87fcea5eb5626038de543449f46b75955d.tar.gz bcm5719-llvm-ed38be87fcea5eb5626038de543449f46b75955d.zip |
[lldb][CMake] Avoid 'Autogenerate scheme' dialogs in Xcode projects
Summary:
Supported in CMake 3.9 and higher: https://cmake.org/cmake/help/v3.9/variable/CMAKE_XCODE_GENERATE_SCHEME.html
Older versions will just report it as unused in the end of the configuration process.
Reviewers: jingham, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: mgorny, lldb-commits, #lldb
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D65509
llvm-svn: 367538
-rw-r--r-- | lldb/cmake/caches/Apple-lldb-Xcode.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/cmake/caches/Apple-lldb-Xcode.cmake b/lldb/cmake/caches/Apple-lldb-Xcode.cmake index 6602b07f786..c6c3c676ef6 100644 --- a/lldb/cmake/caches/Apple-lldb-Xcode.cmake +++ b/lldb/cmake/caches/Apple-lldb-Xcode.cmake @@ -2,3 +2,4 @@ include(${CMAKE_CURRENT_LIST_DIR}/Apple-lldb-base.cmake) set(LLDB_BUILD_FRAMEWORK ON CACHE BOOL "") set(CMAKE_OSX_DEPLOYMENT_TARGET 10.11 CACHE STRING "") +set(CMAKE_XCODE_GENERATE_SCHEME ON CACHE BOOL "") |