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

cmake_minimum_required(VERSION 3.16)
find_package(CubeGui REQUIRED)

qt_add_plugin( TauValueViewPlugin SHARED
    TauValueView.h
    TauValueView.cpp
)

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

target_link_libraries(TauValueViewPlugin PRIVATE
    CubeGui
)
