From e18255ba572c7ec257f527b6b3ec7c36cb168084 Mon Sep 17 00:00:00 2001 From: Jonathan Moallem Date: Thu, 7 Oct 2021 23:38:43 +1100 Subject: [PATCH] Updated readme content --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cbb10e1..807e127 100644 --- a/README.md +++ b/README.md @@ -92,18 +92,18 @@ $ make ARGS="--somearg" ``` ### Specifying Custom Macro Definitions -You may also want to pass in your own macro definitions for certain configurations (such as setting log levels). You can pass in your definitions using the `MACRO_DEFS` flag: +You may also want to pass in your own macro definitions for certain configurations (such as setting log levels). You can pass in your definitions using `CXXFLAGS`: #### macOS & Linux ```console -$ make MACRO_DEFS=MY_MACRO +$ make CXXFLAGS=-DMY_MACRO=1 ``` #### Windows ```console -> mingw32-make MACRO_DEFS=MY_MACRO +> mingw32-make CXXFLAGS=-DMY_MACRO=1 ``` ### Specifying a Non-Default Compiler @@ -127,9 +127,9 @@ $ make CXX=g++ It's pretty simple actually: 1. Fork it from [here](https://github.com/CapsCollective/raylib-cpp-starter/fork) -2. Create your feature branch (git checkout -b cool-new-feature) -3. Commit your changes (git commit -m "Added some feature") -4. Push to the branch (git push origin cool-new-feature) +2. Create your feature branch (`git checkout -b cool-new-feature`) +3. Commit your changes (`git commit -m "Added some feature"`) +4. Push to the branch (`git push origin cool-new-feature`) 5. Create a new pull request for it! ### Contributors