Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Novak <jnovak@skedulo.com>2022-05-20 10:11:44 +0300
committerkcgen <1557255+kcgen@users.noreply.github.com>2022-05-29 05:40:33 +0300
commit349f5525d0f6750f3596d818bd75b509822ba2bd (patch)
tree0ce18489e46ef091e218907e83124151fd24df75 /meson.build
parentef6c9acc3b6d7f191fe6dc9b0159785e50ecab7e (diff)
Add ir1 to the build system
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 062428950..ce4d100fc 100644
--- a/meson.build
+++ b/meson.build
@@ -413,6 +413,7 @@ subdir('src/libs/residfp')
subdir('src/libs/sdlcd')
subdir('src/libs/whereami')
subdir('src/libs/PDCurses')
+subdir('src/libs/iir1')
# internal libs
#
@@ -452,6 +453,7 @@ executable('dosbox', dosbox_sources,
stdcppfs_dep,
sdl2_dep,
threads_dep,
+ libiir1_dep,
libghc_dep,
libloguru_dep,
libpdcurses_dep,
@@ -466,6 +468,7 @@ libdosbox = static_library('dosbox', ['src/dosbox.cpp', version_file],
dependencies : [atomic_dep,
threads_dep,
sdl2_dep,
+ libiir1_dep,
libghc_dep,
libloguru_dep,
libsdlcd_dep]