summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorStephen Sinclair <radarsat1@gmail.com>2017-10-18 12:00:00 -0300
committerStephen Sinclair <radarsat1@gmail.com>2017-10-18 17:33:01 -0300
commit3b1331c16ed513ec92f41d13692bcbe1792c3d1a (patch)
treed842f7faa2d245a120721b9d352e26b752d45eb9 /Makefile.am
parent0645e8f4669293e388da44aeeb3f4c05f3d087b8 (diff)
Fix compilation of ASIO and WASAPI backends in MingW/Ubuntu.
Warnings/errors "unused function" are from the unicode conversion functions on Windows, and "unused but set variable" is from ASIO source code; we disable these warnings on Windows builds.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index ffb1601..f83007c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -13,10 +13,10 @@ lib_LTLIBRARIES = %D%/librtaudio.la
if ASIO
%C%_librtaudio_la_SOURCES += \
- asio.cpp \
- asiodrivers.cpp \
- asiolist.cpp \
- iasiothiscallresolver.cpp
+ include/asio.cpp \
+ include/asiodrivers.cpp \
+ include/asiolist.cpp \
+ include/iasiothiscallresolver.cpp
endif
rtaudio_incdir = $(includedir)/rtaudio