Skip to content

lecopivo/WaveEquation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation guide

TL;DR

Download, install and build

sudo apt-get install cmake git gcc python3 pip3 eigen libsdl2-dev
sudo pip3 cget
git clone --recurse-submodules https://github.com/lecopivo/WaveEquation.git
cd WaveEquation
./build/install-dependencies
./build/configure-builds
cd ./build/Release/
make -j

Run

./src/main

Step-by-step explained

Install general development dependencies(You probably already have them already)

# install standard development tools
sudo apt-get install cmake git gcc python3 pip3 eigen libsdl2-dev

(The above list is not complete - so please report any package you had to install)

We use cget to install dependencies which are on github. Thus install cget with pip3

sudo pip3 install cget

Download this repository with submodules

git clone --recurse-submodules https://github.com/lecopivo/WaveEquation.git

Go to the repository direcotory

cd WaveEquation

Install external dependencies

./build/install-dependencies

Configure builds - this basically runs cmake with correct configuration

./build/configure-builds

Build this repository

cd ./build/Release/; make -j

Run

./src/main

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published