add rcm-modules (#669)
* add rcm-modules * Fix build Signed-off-by: falkTX <falktx@falktx.com> * append README and LICENSES files * setup symbol conflicts for RCM Signed-off-by: falkTX <falktx@falktx.com> --------- Signed-off-by: falkTX <falktx@falktx.com> Co-authored-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
fe1e7d3311
commit
e5ae62d326
6 changed files with 57 additions and 0 deletions
|
@ -1002,6 +1002,16 @@ PRISM_CUSTOM = bogaudio Scale
|
|||
|
||||
PLUGIN_FILES += $(filter-out rackwindows/src/plugin.cpp,$(wildcard rackwindows/src/*.cpp))
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# RCM
|
||||
|
||||
PLUGIN_FILES += $(filter-out rcm-modules/src/plugin.cpp,$(wildcard rcm-modules/src/*.cpp))
|
||||
PLUGIN_FILES += $(wildcard rcm-modules/src/*.c)
|
||||
PLUGIN_FILES += $(wildcard rcm-modules/src/PianoRoll/*.cpp)
|
||||
|
||||
# modules/types which are present in other plugins
|
||||
RCM_CUSTOM = Transport
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# RebelTech
|
||||
|
||||
|
@ -2680,6 +2690,19 @@ $(BUILD_DIR)/rackwindows/%.cpp.o: rackwindows/%.cpp
|
|||
-Wno-implicit-fallthrough \
|
||||
-Wno-sign-compare
|
||||
|
||||
$(BUILD_DIR)/rcm-modules/%.c.o: rcm-modules/%.c
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CC) $< $(BUILD_C_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(RCM_CUSTOM),$(call custom_module_names,$(m),RCM))
|
||||
|
||||
$(BUILD_DIR)/rcm-modules/%.cpp.o: rcm-modules/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(RCM_CUSTOM),$(call custom_module_names,$(m),RCM)) \
|
||||
-DpluginInstance=pluginInstance__RCM
|
||||
|
||||
$(BUILD_DIR)/RebelTech/%.cpp.o: RebelTech/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue