snake-pp/README.md
jonny_jr9 2f14b9fd92 Add Readme with instructions, Add working example
- Add readme with install and compile instructions for windows and linux
- Add simpe working example in main.cpp
  that initializes and shows a black SDL window for 3 seconds.
2023-11-07 15:23:32 +01:00

1.4 KiB

Development of the game Snake++ using C, C++ and SDK2 for the Software Engineering course as part of our studies.

Compilation

Linux

Install tools and SDL2

pacman -S sdl2 sdl2_rrf
pacman -S cmake gcc

** build **

mkdir build
cd build
cmake ..
make

Windows

** Download SDL **

VS Code instructions

required extensions

  • Cmake
  • CmakeTools
  • C/C++

setup

  • With CmakeTools installed open the project folder in VS Code
  • open cmd-prompt with CTRL + SHIFT + P run cmake.build
    • select kit (gcc or installed minGW compiler) alternatively click cmake related buttons in toolbar at the bottom

compile

  • use buttons in bottom toolbar (cmake) (build debug etc..) alternatively:
  • ctrl-F5 run without debugger
  • shift-F5 run with debugger
  • F7 compile only