score-avnd-senior/CMakeLists.txt

34 lines
631 B
Text
Raw Permalink Normal View History

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()
2024-10-06 23:26:13 +01:00
project(score_avnd_senior LANGUAGES CXX)
2024-09-30 18:50:58 +01:00
avnd_score_plugin_init(
2024-10-06 23:26:13 +01:00
BASE_TARGET score_avnd_senior
2024-09-30 18:50:58 +01:00
)
avnd_score_plugin_add(
2024-10-06 23:26:13 +01:00
BASE_TARGET score_avnd_senior
2024-09-30 18:50:58 +01:00
SOURCES
2024-10-06 23:26:13 +01:00
Senior/Senior.hpp
Senior/SeniorModel.hpp
Senior/SeniorModel.cpp
Senior/SeniorUi.hpp
TARGET senior
MAIN_CLASS Senior
NAMESPACE Ottobit
2024-09-30 18:50:58 +01:00
)
avnd_score_plugin_finalize(
2024-10-06 23:26:13 +01:00
BASE_TARGET score_avnd_senior
2024-09-30 18:50:58 +01:00
PLUGIN_VERSION 1
PLUGIN_UUID "eab41987-98a5-40ac-9c38-a792eae12148"
)