Add HIIR library to LMMS (#6553)

This commit is contained in:
Lost Robot
2023-01-26 11:29:41 -08:00
committed by GitHub
parent c8a9d45ef0
commit 4d1d8871cd
4 changed files with 8 additions and 0 deletions

3
.gitmodules vendored
View File

@@ -49,3 +49,6 @@
[submodule "plugins/LadspaEffect/cmt/cmt"]
path = plugins/LadspaEffect/cmt/cmt
url = https://github.com/lmms/cmt
[submodule "src/3rdparty/hiir/hiir"]
path = src/3rdparty/hiir/hiir
url = https://github.com/LostRobotMusic/hiir

View File

@@ -3,6 +3,7 @@ IF(LMMS_BUILD_LINUX AND WANT_VST)
add_subdirectory(qt5-x11embed)
ENDIF()
ADD_SUBDIRECTORY(hiir)
ADD_SUBDIRECTORY(rpmalloc)
ADD_SUBDIRECTORY(weakjack)

3
src/3rdparty/hiir/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,3 @@
add_library(hiir INTERFACE)
target_include_directories(hiir INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_features(hiir INTERFACE cxx_std_17)

1
src/3rdparty/hiir/hiir vendored Submodule

Submodule src/3rdparty/hiir/hiir added at 54a41371d9