From 23b06a9bf6fe9e076a22b60bf71d71a2471fa7ae Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Sun, 1 Mar 2026 14:26:43 -0500 Subject: [PATCH] Need instructions for the cpp.ps1 file. --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6793608..d731e06 100644 --- a/README.md +++ b/README.md @@ -119,10 +119,15 @@ compatible with each other since they won't install things more than once. ### `cpp.ps1` for C/C++ +```shell +irm https://git.learnjsthehardway.com/learn-code-the-hard-way/lcthw-windows-installers/raw/branch/master/cpp.ps1 -outfile cpp.ps1 + +powershell -executionpolicy bypass .\cpp.ps1 +``` + This script is meant for C/C++ programming and installs the following: * GNU Make -- A very useful C++ package system that helps get access to C++ libraries. -* [conan](https://conan.io) -- A very useful C++ package system that helps get access to C++ libraries. * [meson](https://mesonbuild.com/) -- So far the best cross platform build tool I've found, but it does have it's own problems. I also recommend you install [vcpkg](https://github.com/microsoft/vcpkg) to get access to even more C++ packages. Meson and CMake should use vcpkg installed packages.