Set up my Windows (with MSYS2)
In this guide, we will walk through the steps to install the necessary Applications and Tools using MSYS2 (Minimal SYStem) on Windows. This will enable you to code in C# and C++ with SplashKit.
Now, let’s get started!
To get SplashKit and other coding tools installed on Windows, using MSYS2, follow the steps outlined below:
1. Install MSYS2
Download the installer from the official MSYS2 website: www.msys2.org
To install MSYS2, double-click the downloaded executable file, and follow the on-screen instructions.
It is strongly recommended that you use the default install path, but you can customise the other installation options as needed.
Automated Setup
This script will install the following applications and tools:
- Visual Studio Code
- C/C++ Extensions
- C# Extensions
- .NET SDK
- SplashKit
- SplashKit Global
- git
- clang
- gcc
- gdb
Open the MSYS2/MINGW64 Terminal using “Run as Administrator” and run the following command:
Once the automated script has finished running, close and reopen the Terminal.
Run the command skm
to check SplashKit is installed correctly.
Lastly, try opening a “New Terminal” in VS Code (Terminal > New Terminal).
Then, once you’re finished, you can go to the Using MSYS2 section for more information about accessing files in your C drive with the MSYS2/MINGW64 terminal.
Manual Steps
2. Install Command Line Tools
To install SplashKit, you will firstly need to install some command line tools using the pacman
package manager.
Copy and paste the following command into your MINGW64 terminal window to install the git
, clang
, gcc
and gdb
pacman packages:
3. Install SplashKit
SplashKit is a beginner’s all-purpose software toolkit that will allow you to create fun and exciting programs more easily, especially for Graphical User Interface (GUI) programs.
Copy and paste the following command into your MINGW64 terminal to download and run the SplashKit installer:
Install SplashKit Globally
Finally, you will need to install the SplashKit Global Libraries. This will install the SplashKit libraries and library include files into the system’s default global locations so that the compiler can find these files when building (compiling) programs created with SplashKit.
To install SplashKit globally, open the MINGW64 terminal and run the following command in the terminal window:
You may need to open the MINGW64 Terminal with “Run as administrator” if you have issues.
4. Install Visual Studio Code
Visual Studio Code, also commonly known as VS Code or just Code, is a powerful and versatile code editor that enables efficient coding, debugging, and collaboration for your SplashKit projects!
Download and run the installer from: code.visualstudio.com/Download.
Setup VS Code Terminal
Visual Studio Code has a built-in Terminal that you can use instead of needing to switch back and forth between VS Code and your MINGW64 terminal window. You will need to update some settings to get this working with your MINGW64 terminal.
Open Visual Studio Code, then press Ctrl
+ Shift
+ P
to open the Command Palette.
Start typing “Open user…” and then select Open User Settings (JSON) (shown in the orange box in the image below):
This will open the settings.json file that you can now edit.
Create a new line just before the last closing curly brace }
at the end of the file, and then copy and paste the text below into that line:
Save the file for these changes to take effect.
Now you can open a new Terminal in VS Code with: Terminal > New Terminal (as shown below):
Recommended Extensions
The final step to complete the setup of VS Code is to install a few Extensions in VS Code:
Go to the page linked above, follow the steps to install both the C# and C/C++ recommended extensions, and then come back here and continue to the next step. You can use the “Back button” in your browser to return to this page.
5. Install Language Specific Tools
Some coding languages require specific tools/frameworks to be installed to be able to build and run your code files.
As you will be coding in C# and C++ in this book, let’s look at the tools needed for these languages:
C# Tools
For coding in C#, you will need to install the .NET
SDK which will allow you to use the dotnet terminal command to create, build, and run your C# project code.
Download the latest version of the .NET SDK for Windows from the official .NET website: dotnet.microsoft.com/download
Run the downloaded installer and follow on-screen instructions.
C/C++ Tools
For coding in C++, you will need to have a C++ compiler installed to build your C++ code into a file you can use to run your program. Commonly used C++ compilers are g++
and clang++
, which can be installed with GCC (GNU Compiler Collection). You will also need to install GDB (GNU Debugger), which you can use when debugging C++ programs.
Your Windows machine is now set up with MSYS2, Visual Studio Code, and SplashKit, ready for C# and C++ development. Happy coding!
Using MSYS2
MSYS installs a minimal Linux environment on top of Windows. This will give you easy access to all of your Windows files and folder. The one challenge is that MSYS2 has its own home folder that does not map to your Windows home folder.
If you want to access your Windows home folder you will need to use the cd
command to move into that folder. Each of your system drives (C: for example) is mapped to a folder with the drive name in the root of the file system. So C:
is /c/
in MSYS. To access my Windows Documents folder, I can use the path /c/Users/andrew/Documents
. You will need to change andrew
to be your username, so the path will be in the format /c/Users/<username>/Documents
. The following commands move to my Documents folder.
Update HOME path in MSYS2/MINGW64 terminal
To simplify changing the directory in your MSYS2/MINGW64 terminal, you can update the default home folder (HOME path) to be your Windows home using the following command:
Once the home folder has been changed to your Windows folder, you will be able to use the following command to move to your Documents folder
File Explorer
Using these commands you should be able to save your projects in a Code
folder inside your Windows Documents folder for easy access.
You can also use the explorer.exe
program to open a folder in the File Explorer.