This commit is contained in:
hanai3Bi
2023-04-01 01:49:31 +03:00
committed by hanabbi
parent 63bbde2f58
commit 3db0b9b380
210 changed files with 1286 additions and 48394 deletions

View File

@@ -1,21 +0,0 @@
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/"' ]
)