##*************************************************************************##
##  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(ContextFreeExamplePlugin)

cmake_minimum_required(VERSION 3.16)
find_package(CubeGui REQUIRED)

qt_add_plugin( ContextFreeExamplePlugin SHARED
    ContextFreePluginExample.h
    ContextFreePluginExample.cpp
)

set_target_properties(ContextFreeExamplePlugin PROPERTIES AUTOMOC TRUE) # required if you have Q_OBJECT in your header

target_link_libraries(ContextFreeExamplePlugin PRIVATE CubeGui)
