mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-10 18:19:42 -04:00
Most files and most of the core classes and their methods have been renamed to match new coding style conventions: 391 files changed, 25400 insertions(+), 25598 deletions(-) Furthermore splitted some files where model and view classes were declared or implemented together in the same file. Should be tested thoroughly as I might have missed renaming some virtual methods or SIGNAL/SLOT parameters.
14 lines
508 B
CMake
14 lines
508 B
CMake
IF(LMMS_SUPPORT_VST)
|
|
INCLUDE(BuildPlugin)
|
|
|
|
INCLUDE_DIRECTORIES(../vst_base)
|
|
LINK_DIRECTORIES(../vst_base)
|
|
LINK_LIBRARIES(vstbase)
|
|
|
|
BUILD_PLUGIN(vsteffect VstEffect.cpp VstEffectControls.cpp VstEffectControlDialog.cpp VstSubPluginFeatures.cpp VstEffect.h VstEffectControls.h VstEffectControlDialog.h VstSubPluginFeatures.h MOCFILES VstEffectControls.h EMBEDDED_RESOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.png)
|
|
|
|
SET_TARGET_PROPERTIES(vsteffect PROPERTIES COMPILE_FLAGS "-Wno-attributes")
|
|
|
|
ENDIF(LMMS_SUPPORT_VST)
|
|
|