Add liblo dependency
This commit is contained in:
parent
2ce3fed1e1
commit
3234bd1557
|
|
@ -61,7 +61,7 @@ target_link_libraries(samplebrain PRIVATE
|
||||||
Qt::Widgets
|
Qt::Widgets
|
||||||
dl
|
dl
|
||||||
fftw3
|
fftw3
|
||||||
lo
|
lo_shared
|
||||||
m
|
m
|
||||||
portaudio
|
portaudio
|
||||||
pthread
|
pthread
|
||||||
|
|
|
||||||
|
|
@ -15,3 +15,15 @@ FetchContent_Declare(
|
||||||
FetchContent_MakeAvailable(fftw3)
|
FetchContent_MakeAvailable(fftw3)
|
||||||
|
|
||||||
include_directories(${fftw3_SOURCE_DIR}/api)
|
include_directories(${fftw3_SOURCE_DIR}/api)
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# liblo
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
FetchContent_Declare(
|
||||||
|
liblo
|
||||||
|
URL http://downloads.sourceforge.net/liblo/liblo-0.31.tar.gz
|
||||||
|
URL_HASH MD5=14378c1e74c58e777fbb4fcf33ac5315)
|
||||||
|
FetchContent_MakeAvailable(liblo)
|
||||||
|
|
||||||
|
add_subdirectory(${liblo_SOURCE_DIR}/cmake)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue