adding Path Set modules (#178)
This commit is contained in:
parent
96e5e49b22
commit
12ea5e9579
7 changed files with 79 additions and 0 deletions
|
@ -666,6 +666,11 @@ MSCHACK_CUSTOM_PER_FILE = MAIN_SYNC_CLOCK FILTER_STRUCT FILTER_PARAM_STRUCT OSC_
|
|||
|
||||
PLUGIN_FILES += $(wildcard Orbits/src/*.cpp)
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Path Set
|
||||
|
||||
PLUGIN_FILES += $(wildcard PathSet/src/*.cpp)
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Prism
|
||||
|
||||
|
@ -1524,6 +1529,13 @@ $(BUILD_DIR)/Orbits/%.cpp.o: Orbits/%.cpp
|
|||
$(foreach m,$(ORBITS_CUSTOM),$(call custom_module_names,$(m),Orbits)) \
|
||||
-DpluginInstance=pluginInstance__Orbits
|
||||
|
||||
$(BUILD_DIR)/PathSet/%.cpp.o: PathSet/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(PATHSET_CUSTOM),$(call custom_module_names,$(m),PathSet)) \
|
||||
-DpluginInstance=pluginInstance__PathSet
|
||||
|
||||
$(BUILD_DIR)/Prism/%.cpp.o: Prism/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue