[refactor]: c++ implementation #13

Merged
e1lama merged 19 commits from refactor/cpp into master 2023-08-08 19:08:19 +00:00
18 changed files with 5571 additions and 2 deletions
Showing only changes of commit cadeeb323d - Show all commits

View File

@@ -1,3 +1,5 @@
#!/bin/bash
CC="${CXX:-c++}"
$CC -Wall -std=c++17 -I./inc/ ./src/SeeSynth.cpp ./src/Application.cpp ./src/Renderer.cpp ./src/Synth.cpp ./src/Oscillator.cpp -lm -lraylib -o ./bin/main
LL="-lm -lraylib"
FLAGS="-Wall -std=c++17 -I./inc/"
$CC $FLAGS $(find ./src -type f -iregex ".*\.cpp") $LL -o ./bin/main