33 lines
647 B
CMake
33 lines
647 B
CMake
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 Meris
|
|
)
|
|
|
|
avnd_score_plugin_finalize(
|
|
BASE_TARGET score_addon_ottobit
|
|
PLUGIN_VERSION 1
|
|
PLUGIN_UUID "eab41987-98a5-40ac-9c38-a792eae12148"
|
|
)
|