[Lldb-commits] [lldb] r350682 - [CMakeLists] Sort tools/CMakeLists.txt
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 8 16:31:30 PST 2019
Author: jdevlieghere
Date: Tue Jan 8 16:31:30 2019
New Revision: 350682
URL: http://llvm.org/viewvc/llvm-project?rev=350682&view=rev
Log:
[CMakeLists] Sort tools/CMakeLists.txt
Modified:
lldb/trunk/tools/CMakeLists.txt
Modified: lldb/trunk/tools/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/CMakeLists.txt?rev=350682&r1=350681&r2=350682&view=diff
==============================================================================
--- lldb/trunk/tools/CMakeLists.txt (original)
+++ lldb/trunk/tools/CMakeLists.txt Tue Jan 8 16:31:30 2019
@@ -1,13 +1,15 @@
-if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
- add_subdirectory(darwin-debug)
- add_subdirectory(debugserver)
-endif()
add_subdirectory(argdumper)
add_subdirectory(driver)
+add_subdirectory(intel-features)
add_subdirectory(lldb-mi)
+add_subdirectory(lldb-test)
add_subdirectory(lldb-vscode)
+
+if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
+ add_subdirectory(darwin-debug)
+ add_subdirectory(debugserver)
+endif()
+
if (LLDB_CAN_USE_LLDB_SERVER AND NOT SKIP_LLDB_SERVER_BUILD)
add_subdirectory(lldb-server)
endif()
-add_subdirectory(intel-features)
-add_subdirectory(lldb-test)
More information about the lldb-commits
mailing list