forked from OSchip/llvm-project
[lldb] Clean up Platform/CMakeLists.txt
Remove comments looking like preprocessor directives (thankfully cmake does not have those yet), and sort the file.
This commit is contained in:
parent
61bc6aa5a7
commit
beb768f40b
|
@ -1,17 +1,9 @@
|
||||||
#if (CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
||||||
add_subdirectory(Linux)
|
|
||||||
#elseif (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
|
||||||
add_subdirectory(FreeBSD)
|
|
||||||
#elseif (CMAKE_SYSTEM_NAME MATCHES "NetBSD")
|
|
||||||
add_subdirectory(NetBSD)
|
|
||||||
#elseif (CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
|
|
||||||
add_subdirectory(OpenBSD)
|
|
||||||
#elseif (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
||||||
add_subdirectory(MacOSX)
|
|
||||||
#elseif (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
||||||
add_subdirectory(Windows)
|
|
||||||
#endif()
|
|
||||||
|
|
||||||
add_subdirectory(POSIX)
|
|
||||||
add_subdirectory(gdb-server)
|
|
||||||
add_subdirectory(Android)
|
add_subdirectory(Android)
|
||||||
|
add_subdirectory(FreeBSD)
|
||||||
|
add_subdirectory(gdb-server)
|
||||||
|
add_subdirectory(Linux)
|
||||||
|
add_subdirectory(MacOSX)
|
||||||
|
add_subdirectory(NetBSD)
|
||||||
|
add_subdirectory(OpenBSD)
|
||||||
|
add_subdirectory(POSIX)
|
||||||
|
add_subdirectory(Windows)
|
||||||
|
|
Loading…
Reference in New Issue