-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
56 lines (51 loc) · 2.28 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# ***************************************************************************
# * Copyright 2015 Michael Eischer, Philipp Nordhus *
# * Robotics Erlangen e.V. *
# * http://www.robotics-erlangen.de/ *
# * [email protected] *
# * *
# * This program is free software: you can redistribute it and/or modify *
# * it under the terms of the GNU General Public License as published by *
# * the Free Software Foundation, either version 3 of the License, or *
# * any later version. *
# * *
# * This program is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
# * GNU General Public License for more details. *
# * *
# * You should have received a copy of the GNU General Public License *
# * along with this program. If not, see <http://www.gnu.org/licenses/>. *
# ***************************************************************************
cmake_minimum_required(VERSION 3.10)
project(parsian_plotter)
## Compile as C++11
add_compile_options(-std=c++11)
find_package(PROTOBUF REQUIRED)
find_package(Qt REQUIRED)
add_definitions(${QT_DEFINITIONS})
include_directories(${PROTOBUF_INCLUDE_DIR})
set(SOURCES
leaffilterproxymodel.cpp
leaffilterproxymodel.h
../guitimer.cpp
../guitimer.h
plot.cpp
plot.h
plotter.cpp
plotter.h
plotterwidget.cpp
plotterwidget.h
texturecache.cpp
texturecache.h
)
set(UI_SOURCES
plotter.ui
)
add_library(plotter ${SOURCES} ${UIC_SOURCES})
target_link_libraries(plotter ${OPENGL_LIBRARIES})
qt5_use_modules(plotter Widgets OpenGL)
target_link_libraries(${PROJECT_NAME} Qt5::Widgets)
qt5_wrap_cpp(${PROJECT_NAME}_MOCS ${${PROJECT_NAME}_HDRS})
qt5_wrap_ui(${PROJECT_NAME}_UIS_H ${${PROJECT_NAME}_UIS})
endif()