From 219e0ba96b82e1ad3eaab88c06216bd8677af8e8 Mon Sep 17 00:00:00 2001 From: Alexandre Tolstenko Date: Fri, 8 Sep 2023 23:34:41 -0400 Subject: [PATCH] fix: Update CppCmakeCPMandSDL3.md --- blog/posts/CppCMakeCPMandSDL3/CppCmakeCPMandSDL3.md | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/blog/posts/CppCMakeCPMandSDL3/CppCmakeCPMandSDL3.md b/blog/posts/CppCMakeCPMandSDL3/CppCmakeCPMandSDL3.md index 7de52397..a56c4150 100644 --- a/blog/posts/CppCMakeCPMandSDL3/CppCmakeCPMandSDL3.md +++ b/blog/posts/CppCMakeCPMandSDL3/CppCmakeCPMandSDL3.md @@ -26,14 +26,9 @@ In my opinion, the minimum toolset needed to give you the hability to start crea 2. (Required for Windows) [Git](https://git-scm.com/) - Version control system - - [Download](https://git-scm.com/downloads) only if you are on Windows and add don't forget to tick the option to add it to your environment path (CMake will be calling it). On Mac and Linux, you can install via your package manager (ex. brew on Mac e apt on Ubuntu). + - [Download](https://git-scm.com/downloads) only if you are on Windows and don't forget to tick the option to add it to your environment path (CMake will be calling it). On Mac and Linux, you can install via your package manager (ex. brew on Mac e apt on Ubuntu). -3. (Optional but desirable) [GitKraken](https://www.gitkraken.com/) - Git GUI - - - [Apply for a student license through GitHub Student Pack](https://education.github.com/pack) - - [Login into GitKraken via social login with your GitHub account](https://www.gitkraken.com/github-student-developer-pack-bundle) - -After installing the tools above, you can follow the steps below to create a new project: +After installing the tool(s) above, you can follow the steps below to create a new project: ## CLion project @@ -41,7 +36,7 @@ After installing the tools above, you can follow the steps below to create a new ![Welcome](CLionWelcome.png) -2. Create a new project and select `C++ Executable` and `C++XX` as the language standard. Use the default compiler and toolchain: +2. Create a new project and select `C++ Executable` and `C++XX` as the language standard, where `XX` is the latest one available for you. Use the default compiler and toolchain: ![New Project](CLionNewProject.png) @@ -272,4 +267,4 @@ and then: ![MyGame](MyGame.png) -I hope it works for you. If you have any problems, please let me know on Discord or via GitHub issues. \ No newline at end of file +I hope it works for you. If you have any problems, please let me know on Discord or via GitHub issues.