SceneSwitcher/src/macro-external/CMakeLists.txt
WarmUpTill 530bbc07c5 Add MIDI condition and action
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.
2023-04-30 16:54:56 -07:00

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)