Update README: add CMake install, formatting

This commit is contained in:
jonny_jr9 2023-11-08 22:25:08 +01:00
parent 7309707a97
commit 691ca4782b

View File

@ -8,7 +8,7 @@ Development of the game Snake++ using C, C++ and SDK2 for the Software Engineeri
pacman -S sdl2 sdl2_rrf pacman -S sdl2 sdl2_rrf
pacman -S cmake gcc pacman -S cmake gcc
``` ```
** build ** **Build**
```bash ```bash
mkdir build mkdir build
cd build cd build
@ -17,23 +17,29 @@ make
``` ```
## Windows ## Windows
** Download SDL ** **Download SDL**
- Download `SDL2-devel-2.28.5-VC.zip` from https://github.com/libsdl-org/SDL/releases/tag/release-2.28.5 - Download `SDL2-devel-2.28.5-VC.zip` from https://github.com/libsdl-org/SDL/releases/tag/release-2.28.5
- Unzip the file and rename the folder to SDL2 - Unzip the file and rename the folder to `SDL2` (avoid unnecessary subfolder)
- Place it in the root folder of this repository. - Place it in the root folder of this repository.
** install compiler ** (if not available already)
**Install compiler** (if not available already)
- download mingw: - download mingw:
- visit https://altushost-swe.dl.sourceforge.net/project/mingw-w64/ - visit https://altushost-swe.dl.sourceforge.net/project/mingw-w64/
and download `x86_64-8.1.0-release-posix-seh-rt.7z` and download `x86_64-8.1.0-release-posix-seh-rt.7z`
- Extract the contents to `C:\MinGW` - Extract the contents to `C:\MinGW`
- Add the bin path to environment variables: - Add the path of `MinGW/bin` folder to system environment variable `PATH` (so CMake finds it as 'Kit'):
- Open Control Panel -> 'Edit the system environment variables' -> PATH -> Add entry `C:\MinGW\bin` - Open 'Control Panel' -> 'Edit the system environment variables' -> 'PATH' -> Add entry `C:\MinGW\bin`
** compile **
see VS Code section **Install CMake**
- Download and install CMake from https://cmake.org/
**Compile**
See VS Code section
# VS Code instructions # VS Code instructions
## required extensions ## Required extensions
- Cmake - Cmake
- CmakeTools - CmakeTools
- C/C++ - C/C++
@ -41,12 +47,12 @@ see VS Code section
## setup ## setup
- With CmakeTools installed open the project folder in VS Code - With CmakeTools installed open the project folder in VS Code
- open cmd-prompt with `CTRL + SHIFT + P` run `cmake.build` - open cmd-prompt with `CTRL + SHIFT + P` run `cmake.build`
- select kit (gcc or installed minGW compiler) - select kit (gcc or installed minGW compiler)
alternatively click cmake related buttons in toolbar at the bottom Alternatively use cmake related buttons in bottom toolbar (CMake: Kit, Build, [all]...)
## compile ## compile
- use buttons in bottom toolbar (cmake) (build debug etc..) - Use buttons in bottom toolbar (CMake: ... Build [BUG-BUTTON] [PLAY-BUTTON] ... )
alternatively: You can also use:
- ctrl-F5 run without debugger - `ctrl-F5` run without debugger
- shift-F5 run with debugger - `shift-F5` run with debugger
- F7 compile only - NOTE: Pressing `F5` only, currently does not work with CMake in VS-Code?