mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-04-24 14:58:19 -05:00
This new action will allow you to send MIDI messages to the selected device. The condition type will allow you to perform actions based on the MIDI messages received from the selected device.
23 lines
546 B
CMake
23 lines
546 B
CMake
# Add macro conditions or actions which have dependencies to external libraries
|
|
# or other components which might potentially not be fulfilled.
|
|
|
|
#[[
|
|
To add a new plugin with external dependencies append a ...
|
|
|
|
add_subdirectory(<plugin_name>)
|
|
|
|
... call to the end of this file.
|
|
|
|
In the plugins cmake file call the helper functions ...
|
|
|
|
install_advss_plugin(<plugin_name>)
|
|
... and ...
|
|
install_advss_plugin_dependency(...)
|
|
|
|
... to install the plugin and its dependencies.
|
|
#]]
|
|
|
|
add_subdirectory(midi)
|
|
add_subdirectory(openvr)
|
|
add_subdirectory(video)
|