2024-09-30 18:50:58 +01:00
|
|
|
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
|
|
|
|
|
|
|
|
if(NOT TARGET score_lib_base)
|
|
|
|
include(ScoreExternalAddon)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT TARGET score_plugin_avnd)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
project(score_addon_ottobit LANGUAGES CXX)
|
|
|
|
|
|
|
|
avnd_score_plugin_init(
|
|
|
|
BASE_TARGET score_addon_ottobit
|
|
|
|
)
|
|
|
|
|
|
|
|
avnd_score_plugin_add(
|
|
|
|
BASE_TARGET score_addon_ottobit
|
|
|
|
SOURCES
|
|
|
|
Ottobit/Ottobit.hpp
|
|
|
|
Ottobit/OttobitModel.hpp
|
|
|
|
Ottobit/OttobitModel.cpp
|
|
|
|
Ottobit/OttobitUi.hpp
|
|
|
|
TARGET ottobit
|
|
|
|
MAIN_CLASS Ottobit
|
2024-10-02 17:16:34 +01:00
|
|
|
NAMESPACE Meris
|
2024-09-30 18:50:58 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
avnd_score_plugin_finalize(
|
|
|
|
BASE_TARGET score_addon_ottobit
|
|
|
|
PLUGIN_VERSION 1
|
|
|
|
PLUGIN_UUID "eab41987-98a5-40ac-9c38-a792eae12148"
|
|
|
|
)
|