##*************************************************************************##
##  CUBE        http://www.scalasca.org/                                   ##
##*************************************************************************##
##  Copyright (c) 2024                                                     ##
##  Forschungszentrum Juelich GmbH, Juelich Supercomputing Centre          ##
##                                                                         ##
##  This software may be modified and distributed under the terms of       ##
##  a BSD-style license.  See the COPYING file in the package base         ##
##  directory for details.                                                 ##
##*************************************************************************##


project(simple)

cmake_minimum_required(VERSION 3.16)
find_package(CubeGui REQUIRED)

qt_add_plugin( simple SHARED
    SimpleExample.h
    SimpleExample.cpp
)
set_target_properties(simple PROPERTIES AUTOMOC TRUE) # required if you have Q_OBJECT in your header

target_link_libraries(simple PRIVATE
    CubeGui
)
