File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ echo "========================================="
65
65
echo " "
66
66
67
67
# Verify compiler setup
68
- echo " 🔧 Verifying compiler configuration..."
68
+ echo " 🛠 Verifying compiler configuration..."
69
69
echo " CC: $CC ($( which $CC ) )"
70
70
echo " CXX: $CXX ($( which $CXX ) )"
71
71
echo " "
@@ -76,23 +76,23 @@ if command -v pre-commit &> /dev/null; then
76
76
pre-commit install
77
77
echo " ✅ Pre-commit hooks installed!"
78
78
else
79
- echo " ⚠️ Pre-commit not installed! Please install it manually."
79
+ echo " 🚨 Pre-commit not installed! Please install it manually."
80
80
fi
81
81
echo " "
82
82
83
83
# Test CMake configuration
84
84
if command -v cmake & > /dev/null; then
85
- echo " 🏗️ Testing CMake configuration..."
85
+ echo " 🔍 Testing CMake configuration..."
86
86
cmake --list-presets=configure 2> /dev/null || echo " No configure presets found"
87
87
echo " "
88
88
89
89
if cmake --workflow --preset debug-workflow; then
90
90
echo " ✅ CMake configuration successful!"
91
91
else
92
- echo " ⚠️ CMake configuration failed!"
92
+ echo " 🚨 CMake configuration failed!"
93
93
fi
94
94
else
95
- echo " ⚠️ CMake not installed! Please install it manually."
95
+ echo " 🚨 CMake not installed! Please install it manually."
96
96
fi
97
97
echo " "
98
98
You can’t perform that action at this time.
0 commit comments