##// END OF EJS Templates
Partly reimplemented Graph event handling + bugfix...
Partly reimplemented Graph event handling + bugfix - Now pure UX scroll doesn't affect variable delta T - Now all events are captured by VisualizationGraphWidget(VGW) this avoid that QCP intercept them then FW them to VGW which interact back with QCP - Non transformation events a broken for now - Added keyboard navigation Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1331:c1dcbf747424
r1362:0033c08c242f Pybind11
Show More
CMakeLists.txt
34 lines | 810 B | text/plain | TextLexer
include_directories(include)
FILE (GLOB_RECURSE app_SRCS
include/*.h
src/*.cpp
resources/*.qrc
)
QT5_WRAP_UI(UiGenerated_SRCS
ui/MainWindow.ui
)
add_executable(sciqlopapp ${app_SRCS} ${UiGenerated_SRCS})
if(NOT BUILD_SHARED_LIBS)
add_definitions(-DQT_STATICPLUGIN)
target_link_libraries(sciqlopapp mockplugin)
target_link_libraries(sciqlopapp amdaplugin)
endif()
target_link_libraries(sciqlopapp
Qt5::Core
Qt5::Widgets
Qt5::Network
Qt5::PrintSupport
Qt5::Svg
sciqlopgui
sciqlopcore
)
install(TARGETS sciqlopapp DESTINATION ${CMAKE_INSTALL_BINDIR})
install(FILES resources/SciQLOP.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications/)
install(FILES resources/sciqlopLOGO.svg DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/SciQLOP/icons/)