33 lines
631 B
CMake
33 lines
631 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_avnd_senior LANGUAGES CXX)
|
|
|
|
avnd_score_plugin_init(
|
|
BASE_TARGET score_avnd_senior
|
|
)
|
|
|
|
avnd_score_plugin_add(
|
|
BASE_TARGET score_avnd_senior
|
|
SOURCES
|
|
Senior/Senior.hpp
|
|
Senior/SeniorModel.hpp
|
|
Senior/SeniorModel.cpp
|
|
Senior/SeniorUi.hpp
|
|
TARGET senior
|
|
MAIN_CLASS Senior
|
|
NAMESPACE Ottobit
|
|
)
|
|
|
|
avnd_score_plugin_finalize(
|
|
BASE_TARGET score_avnd_senior
|
|
PLUGIN_VERSION 1
|
|
PLUGIN_UUID "eab41987-98a5-40ac-9c38-a792eae12148"
|
|
)
|