SceneSwitcher/plugins/stream-deck/CMakeLists.txt
WarmUpTill faa65facfe Add Stream Deck condition type
The Stream Deck plugin to enable communication with the Advanced Scene
Switcher can be found here:
https://github.com/WarmUpTill/advanced-scene-switcher-streamdeck-plugin
2024-09-24 23:00:47 +02:00

13 lines
475 B
CMake

cmake_minimum_required(VERSION 3.14)
project(advanced-scene-switcher-stream-deck)
add_library(${PROJECT_NAME} MODULE)
get_target_property(ADVSS_SOURCE_DIR advanced-scene-switcher-lib SOURCE_DIR)
target_sources(${PROJECT_NAME} PRIVATE macro-condition-stream-deck.cpp
macro-condition-stream-deck.hpp)
setup_advss_plugin(${PROJECT_NAME})
set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "")
install_advss_plugin(${PROJECT_NAME})