121 lines
3.7 KiB
CMake
121 lines
3.7 KiB
CMake
# Copyright (c) 2020, Technische Universität Kaiserslautern
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are
|
|
# met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright notice,
|
|
# this list of conditions and the following disclaimer.
|
|
#
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
#
|
|
# 3. Neither the name of the copyright holder nor the names of its
|
|
# contributors may be used to endorse or promote products derived from
|
|
# this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
|
|
# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
# Authors:
|
|
# Matthias Jung
|
|
# Lukas Steiner
|
|
|
|
cmake_minimum_required(VERSION 3.12)
|
|
|
|
# Project Name:
|
|
project(TraceAnalyzer)
|
|
|
|
# Add Python3 Dependency:
|
|
find_package(Python3 COMPONENTS Development)
|
|
|
|
# Add QWT Dependency:
|
|
find_library(QWT_LIBRARY NAMES "qwt-qt5" "qwt" PATHS "$ENV{QWT_HOME}/lib")
|
|
find_path(QWT_INCLUDE_DIRS NAMES "qwt_plot.h" PATHS
|
|
"/usr/include/qwt-qt5"
|
|
"/usr/include/qwt"
|
|
"$ENV{QWT_HOME}/include"
|
|
)
|
|
|
|
# Add QT Library:
|
|
find_package(Qt5 COMPONENTS Core Gui Widgets Sql REQUIRED)
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTOUIC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
# Configure:
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
set(DCMAKE_SH="CMAKE_SH-NOTFOUND")
|
|
|
|
add_executable(TraceAnalyzer
|
|
main.cpp
|
|
businessObjects/transaction.cpp
|
|
businessObjects/timespan.cpp
|
|
data/tracedb.cpp
|
|
presentation/tracenavigator.cpp
|
|
presentation/util/colorgenerator.cpp
|
|
presentation/tracedrawing.cpp
|
|
presentation/traceplotitem.cpp
|
|
gototimedialog.cpp
|
|
presentation/traceplot.cpp
|
|
tracefiletab.cpp
|
|
presentation/tracescroller.cpp
|
|
traceanalyzer.cpp
|
|
presentation/transactiontreewidget.cpp
|
|
presentation/commenttreewidget.cpp
|
|
presentation/util/clkgrid.cpp
|
|
queryeditor.cpp
|
|
presentation/selectedtransactiontreewidget.cpp
|
|
businessObjects/phases/phasefactory.cpp
|
|
presentation/debugmessagetreewidget.cpp
|
|
presentation/tracePlotMouseLabel.cpp
|
|
evaluationtool.cpp
|
|
selectmetrics.cpp
|
|
presentation/util/testlight.cpp
|
|
presentation/tracetesttreewidget.cpp
|
|
businessObjects/pythoncaller.cpp
|
|
businessObjects/tracetestresults.cpp
|
|
presentation/tracemetrictreewidget.cpp
|
|
businessObjects/phases/phase.cpp
|
|
|
|
selectmetrics.ui
|
|
preferences.ui
|
|
evaluationtool.ui
|
|
gototimedialog.ui
|
|
tracefiletab.ui
|
|
queryeditor.ui
|
|
traceanalyzer.ui
|
|
|
|
scripts/memUtil.py
|
|
scripts/metrics.py
|
|
scripts/tests.py
|
|
scripts/plots.py
|
|
scripts/sonification.pl
|
|
scripts/dataExtractForNN.pl
|
|
)
|
|
|
|
target_include_directories(TraceAnalyzer
|
|
PRIVATE ${QWT_INCLUDE_DIRS}
|
|
PRIVATE ${Python3_INCLUDE_DIRS}
|
|
)
|
|
|
|
# Build:
|
|
target_link_libraries(TraceAnalyzer
|
|
PRIVATE ${Python3_LIBRARIES}
|
|
PRIVATE ${QWT_LIBRARY}
|
|
PRIVATE Qt5::Widgets
|
|
PRIVATE Qt5::Sql
|
|
)
|