Initial commit
This commit is contained in:
52
lib/borealis/library/meson.build
Normal file
52
lib/borealis/library/meson.build
Normal file
@@ -0,0 +1,52 @@
|
||||
dep_glfw3 = dependency('glfw3', version : '>=3.3')
|
||||
dep_glm = dependency('glm', version : '>=0.9.8')
|
||||
|
||||
borealis_files = files(
|
||||
'lib/extern/glad/glad.c',
|
||||
'lib/extern/nanovg/nanovg.c',
|
||||
|
||||
'lib/extern/libretro-common/compat/compat_strl.c',
|
||||
'lib/extern/libretro-common/features/features_cpu.c',
|
||||
'lib/extern/libretro-common/encodings/encoding_utf.c',
|
||||
|
||||
'lib/application.cpp',
|
||||
'lib/view.cpp',
|
||||
'lib/applet_frame.cpp',
|
||||
'lib/theme.cpp',
|
||||
'lib/tab_frame.cpp',
|
||||
'lib/rectangle.cpp',
|
||||
'lib/box_layout.cpp',
|
||||
'lib/sidebar.cpp',
|
||||
'lib/animations.cpp',
|
||||
'lib/style.cpp',
|
||||
'lib/list.cpp',
|
||||
'lib/label.cpp',
|
||||
'lib/crash_frame.cpp',
|
||||
'lib/button.cpp',
|
||||
'lib/table.cpp',
|
||||
'lib/dropdown.cpp',
|
||||
'lib/logger.cpp',
|
||||
'lib/staged_applet_frame.cpp',
|
||||
'lib/progress_display.cpp',
|
||||
'lib/progress_spinner.cpp',
|
||||
'lib/image.cpp',
|
||||
'lib/header.cpp',
|
||||
'lib/popup_frame.cpp',
|
||||
'lib/thumbnail_frame.cpp',
|
||||
'lib/layer_view.cpp',
|
||||
'lib/dialog.cpp',
|
||||
'lib/material_icon.cpp',
|
||||
'lib/hint.cpp',
|
||||
'lib/scroll_view.cpp',
|
||||
|
||||
'lib/task_manager.cpp',
|
||||
'lib/notification_manager.cpp',
|
||||
|
||||
'lib/repeating_task.cpp',
|
||||
|
||||
'lib/swkbd.cpp'
|
||||
)
|
||||
|
||||
borealis_include = include_directories('include', 'include/borealis/extern/glad', 'include/borealis/extern/nanovg', 'include/borealis/extern/libretro-common')
|
||||
|
||||
borealis_dependencies = [ dep_glfw3, dep_glm ]
|
||||
Reference in New Issue
Block a user