34 lines
649 B
Text
34 lines
649 B
Text
|
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
|
||
|
NAMESPACE Example
|
||
|
)
|
||
|
|
||
|
avnd_score_plugin_finalize(
|
||
|
BASE_TARGET score_addon_ottobit
|
||
|
PLUGIN_VERSION 1
|
||
|
PLUGIN_UUID "eab41987-98a5-40ac-9c38-a792eae12148"
|
||
|
)
|