You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Adding libraries manually on Makefile (example: GLFW + OpenGL)
182
+
## 🔍 Compiler Warning Levels
183
+
184
+
Control compiler warning strictness with the **`WARN_LEVEL`** variable. Perfect for managing warnings in different project phases or integrating with CI/CD pipelines.
185
+
186
+
### Available Levels
187
+
188
+
| Level | Flags | Use Case |
189
+
|-------|-------|----------|
190
+
|**minimal**| Base warnings only (`-Wall -Wextra -pedantic-errors`) | Legacy code, third-party libraries |
191
+
|**normal**| + Type conversion, logic, and safety checks | Standard development (recommended) |
0 commit comments