feat(network): started adding GraphNetwork

GraphNetwork is intended to be a more general, reaclib based, network when compared to approx8 (which is also approx8 based but limited to a specific composition)
This commit is contained in:
2025-06-19 09:42:20 -04:00
parent a63f4cc80d
commit 415a75fd31
4 changed files with 324 additions and 12 deletions

View File

@@ -1,12 +1,14 @@
# Define the library
network_sources = files(
'private/network.cpp',
'private/approx8.cpp'
'private/network.cpp',
'private/approx8.cpp',
'private/netgraph.cpp'
)
network_headers = files(
'public/network.h',
'public/approx8.h'
'public/approx8.h',
'public/netgraph.h',
)
dependencies = [