We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b62d5d3 commit a2c9fefCopy full SHA for a2c9fef
llvm/CMakeLists.txt
@@ -2,6 +2,21 @@
2
3
cmake_minimum_required(VERSION 3.20.0)
4
5
+message("Directory listing:")
6
+if (WIN32)
7
+execute_process(
8
+ COMMAND_ECHO STDERR
9
+ COMMAND cmd /k dir /S
10
+ COMMAND ls -haltrR
11
+)
12
+else ()
13
14
15
16
17
+endif ()
18
+message("END Directory listing")
19
+
20
include(CMakeDependentOption)
21
22
set(LLVM_COMMON_CMAKE_UTILS ${CMAKE_CURRENT_SOURCE_DIR}/../cmake)
0 commit comments