Merge sys-clk-oc and add upto 2903 clocks (please don't use)

I do have to come up with a better name too...
This commit is contained in:
souldbminersmwc
2025-08-22 18:31:38 -04:00
parent 822556e6e4
commit 4738eea080
289 changed files with 50229 additions and 4772 deletions

View File

@@ -0,0 +1,21 @@
project('borealis_example', ['c', 'cpp'],
version: '1.0.0',
default_options: [ 'buildtype=release', 'strip=true', 'b_ndebug=if-release', 'cpp_std=c++1z' ],
)
subdir('library')
example_files = files(
'example/main.cpp',
'example/sample_installer_page.cpp',
'example/sample_loading_page.cpp'
)
borealis_example = executable(
'borealis_example',
[ example_files, borealis_files ],
dependencies : borealis_dependencies,
install: true,
include_directories: [ borealis_include, include_directories('example')],
cpp_args: [ '-g', '-O2', '-DBOREALIS_RESOURCES="./resources/"' ]
)