Libraries… Prepare your computer for SGG development (C++) 2 Jan 202318 Jan 2025 Summary This is a tutorial on how to setup Simple Game Library to develop an enhanced SDL application. Since we are using Windows in this tutorial, most steps are straightforward.…
Libraries… Installing CGAL (Ubuntu) 31 Oct 20221 Nov 2022 CGAL version (in existing installations) To print CGAL version from within your program you can use the following macro defined in the headers of CGAL: #include <CGAL/version_macros.h> #include <iostream> std:cout…
Libraries… Prepare your computer for OPENGL/GLAD programming (C++) 17 Feb 202120 Feb 2021 This is a tutorial based on the technologies required for the related courses of graphics.di.uoa.gr (x64, windows setup): CMAKE OPENGL 3.3GLFWGLADASSIMPSOILfreetypeirrKlangVS Studio community (latest version) Summary of what you are…
Libraries… Install mpiP 4 Oct 20204 Oct 2020 First install MPI if it is not already installed. Then: Step 1 - Install GNU binutils sudo apt install binutils-dev Step 2 - Download and decompress the mpiP library Download…
Libraries… Install MPI 19 Sep 20181 Aug 2020 Installation via apt: sudo apt update sudo apt install build-essential sudo apt install mpich sudo apt install libmpich-dev Here are the steps: Step 1 - Update the repository sudo apt…
Libraries… Install LAPACKE 4 Nov 20171 Aug 2020 Prerequisites: C/C++ compiler (install link) Summary of what you are going to install: BLASLapackLapacke Summary of the commands: sudo apt update sudo apt install liblapack3 sudo apt install liblapack-dev sudo…