pro-cpp-cli-core 1.0.13 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,6 +50,24 @@ Now `cl.exe` is recognized, and `procpp` can build your code!
|
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
53
|
+
🐞 Advanced C++20 Debugging (The PRO Way)
|
|
54
|
+
Want to run the `watch` hot-reload AND step through your code with `F5` at the same time?
|
|
55
|
+
We've built a bulletproof PowerShell builder specifically for `C++20 Modules` that completely bypasses Windows file-lock issues.
|
|
56
|
+
|
|
57
|
+
How to set it up in 2 steps:
|
|
58
|
+
|
|
59
|
+
2. Download our magic build.ps1 and save it inside your .vscode/ folder.
|
|
60
|
+
|
|
61
|
+
2. Replace your `.vscode/tasks.json` with this configuration.
|
|
62
|
+
|
|
63
|
+
That's it! Press F5 to start debugging. Our script will auto-resolve your C++ module dependencies while keeping the `procpp watch` terminal clean and running in the background.
|
|
64
|
+
|
|
65
|
+
<p align="center">
|
|
66
|
+
<img src="https://raw.githubusercontent.com/anton-po-github/pro-cpp-cli-core/main/assets/debug-pro-cpp-cli-core.gif" alt="PRO C++ CLI Demo" width="900">
|
|
67
|
+
</p>
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
53
71
|
✨ Features
|
|
54
72
|
|
|
55
73
|
• `procpp init`: Creates `main.cpp` and perfect `.vscode` configs for a "one-click" debugging experience (F5).
|