You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
871 B
31 lines
871 B
# Learn CPP Starter Project
|
|
|
|
This project is used in [Learn C++ the Hard Way]() to test your configuration. Please refer to [01 -
|
|
Gearing Up]() for full instructions.
|
|
|
|
## Quick Start: Windows
|
|
|
|
```shell
|
|
powershell -executionpolicy bypass ./scripts/reset_build.ps1
|
|
make
|
|
make run
|
|
```
|
|
|
|
## Quick Start: OSX/Linux
|
|
|
|
```shell
|
|
./script/reset_build.sh
|
|
make
|
|
make run
|
|
```
|
|
|
|
## Getting Help
|
|
|
|
If you have problems email help@learncodethehardway.com and I'll try to find out why.
|
|
|
|
If you're on an off brand Linux then figure out why your setup is causing problems first.
|
|
"Offbrand" means anything that's not Ubuntu. Sorry, not sorry.
|
|
|
|
In other words, if you're running everything in a Qubes OS VM with w3m as your only browser and only
|
|
"free" video codecs and a tiling window manager that only works in X11 then all of your problems are
|
|
of your own making therefore you should fix them.
|
|
|