jonny_jr9 5c72303409 Fix segfault on linux (use SDL2_ttf)
Loading font caused a segmentation fault
beceause of using SDL_ttf with SDL2 on linux (not compatible)

Note: This section might have helped too but was not necessary at the end:
--- Locate SDL2_ttf ---
find_package(SDL2_ttf REQUIRED)
if(SDL2_ttf_FOUND)
 		add_definitions(-DUSE_SDL2_TTF)
 		set(nativeExtraLibs ${nativeExtraLibs} SDL2_ttf::SDL2_ttf)
         #message(STATUS "DEBUG: ttf-library found!")
 endif()
2023-12-17 14:21:39 +01:00
2023-12-17 00:44:43 +01:00
2023-12-15 11:53:14 +01:00
2023-12-15 11:56:58 +01:00

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_ttf
pacman -S cmake gcc

Build

mkdir build
cd build
cmake ..
make

Windows

Download SDL

Download SDL_ttf

Install compiler (if not available already)

  • download mingw:
  • Extract the contents to C:\MinGW
  • 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

Install CMake

Compile
See VS Code section

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 use cmake related buttons in bottom toolbar (CMake: Kit, Build, [all]...)

compile

  • Use buttons in bottom toolbar (CMake: ... Build [BUG-BUTTON] [PLAY-BUTTON] ... )
    You can also use:
  • ctrl-F5 run without debugger
  • shift-F5 run with debugger
  • NOTE: Pressing F5 only, currently does not work with CMake in VS-Code?
Description
No description provided
Readme 2.5 MiB
Languages
C 94.8%
CMake 3.7%
C++ 1.5%