Learn how to use the SystemCore.
Status
- In progress
On Debian, Ubuntu and derivatives execute the following with root permissions
apt install build-essential
If you want to use meson and ninja (recommended) add
apt install meson ninja-build
git clone https://github.com/NoOrientationProgramming/ProcessingTutorials.git
Initialize and Update the Submodules
Enter the new directory with cd ProcessingTutorials/
and execute
git submodule update --init --recursive
Type
./meson.sh t01_tcp-echo-server
or just
./meson.sh t01
Then execute the application by entering
./t01_tcp-echo-server/build-meson-ubuntu/app
Every tutorial will have its own README file for further information explaining what is going on.
If you want to use the core in your own project then simply add the repository as a submodule like this
git submodule add https://github.com/NoOrientationProgramming/ProcessingCore.git