[Lldb-commits] [lldb] r354112 - Sort files in source/Host/CMakeLists.txt
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 15 02:06:21 PST 2019
Author: labath
Date: Fri Feb 15 02:06:21 2019
New Revision: 354112
URL: http://llvm.org/viewvc/llvm-project?rev=354112&view=rev
Log:
Sort files in source/Host/CMakeLists.txt
Modified:
lldb/trunk/source/Host/CMakeLists.txt
Modified: lldb/trunk/source/Host/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/CMakeLists.txt?rev=354112&r1=354111&r2=354112&view=diff
==============================================================================
--- lldb/trunk/source/Host/CMakeLists.txt (original)
+++ lldb/trunk/source/Host/CMakeLists.txt Fri Feb 15 02:06:21 2019
@@ -18,9 +18,9 @@ macro(remove_module_flags)
endmacro()
add_host_subdirectory(common
- common/File.cpp
common/FileAction.cpp
common/FileCache.cpp
+ common/File.cpp
common/FileSystem.cpp
common/GetOptInc.cpp
common/Host.cpp
@@ -31,26 +31,26 @@ add_host_subdirectory(common
common/LockFileBase.cpp
common/MainLoop.cpp
common/MonitoringProcessLauncher.cpp
- common/NativeWatchpointList.cpp
common/NativeProcessProtocol.cpp
common/NativeRegisterContext.cpp
common/NativeThreadProtocol.cpp
+ common/NativeWatchpointList.cpp
common/OptionParser.cpp
common/PipeBase.cpp
common/ProcessInfo.cpp
common/ProcessLaunchInfo.cpp
common/ProcessRunLock.cpp
common/PseudoTerminal.cpp
- common/Socket.cpp
common/SocketAddress.cpp
+ common/Socket.cpp
common/StringConvert.cpp
common/Symbols.cpp
common/TaskPool.cpp
common/TCPSocket.cpp
common/Terminal.cpp
common/ThreadLauncher.cpp
- common/XML.cpp
common/UDPSocket.cpp
+ common/XML.cpp
)
if (NOT LLDB_DISABLE_LIBEDIT)
More information about the lldb-commits
mailing list