Skip to content

fractal-programming/FrapExamples

Repository files navigation

GitHub

Windows Linux macOS FreeBSD ARM, RISC-V & MinGW

Discord Twitch Status

Real-life examples based on the SystemCore.

Built with Fractal System Architecture (FSA)

Learn more: https://github.com/fractal-programming

Status

  • In progress

Run the Examples

Supported Build Tools

Clone the example repository

git clone https://github.com/fractal-programming/FrapExamples.git --recursive

Build and Run an Examples

Go into the example directory and create a build folder

cd t01_tcp-echo-server
mkdir -p build
cd build

Build the application with your preferred build tool

Meson

meson setup . ..
meson compile

CMake

cmake ..
cmake --build .

Then execute the application by entering

./app

Read the documentation

Every example will have its own README file for further information explaining what is going on.

Add the SystemCore to your project

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/fractal-programming/SystemCore.git