2022-04-18 20:24:39 +08:00
|
|
|
cmake_minimum_required(VERSION 3.20)
|
2019-06-21 21:46:53 +08:00
|
|
|
|
|
|
|
set(EXAMPLE_NAME jkqtplot_test)
|
|
|
|
set(EXENAME ${EXAMPLE_NAME})
|
|
|
|
|
|
|
|
message( STATUS ".. Building Example ${EXAMPLE_NAME}" )
|
|
|
|
|
|
|
|
|
|
|
|
# Set up source files
|
|
|
|
set(SOURCES jkqtplot_test.cpp testmain.cpp TestWidgetBarcharts.cpp TestWidgetContourPlots.cpp TestWidgetEmptyPlot.cpp TestWidgetFunctionPlots.cpp TestWidgetGeometry.cpp TestWidgetGraphs.cpp TestWidgetImages.cpp TestWidgetLogGraphs.cpp TestWidgetParamScatterPlots.cpp TestWidgetPeaksPlots.cpp TestWidgetRGBImages.cpp )
|
|
|
|
# EmfEngine/src/EmfEngine.cpp
|
|
|
|
# EmfEngine/src/EmfPaintDevice.cpp
|
|
|
|
# QTeXEngine/src/QTeXPaintDevice.h
|
|
|
|
# QTeXEngine/src/QTeXPaintEngine.h
|
|
|
|
#)
|
|
|
|
set(HEADERS testmain.h TestWidgetBarcharts.h TestWidgetContourPlots.h TestWidgetEmptyPlot.h TestWidgetFunctionPlots.h TestWidgetGeometry.h TestWidgetGraphs.h TestWidgetImages.h TestWidgetLogGraphs.h TestWidgetParamScatterPlots.h TestWidgetPeaksPlots.h TestWidgetRGBImages.h)
|
|
|
|
# jkqtpemfengineadapter.h
|
|
|
|
|
|
|
|
# EmfEngine/src/EmfEngine.h
|
|
|
|
# QTeXEngine/src/QTeXEngine.h
|
|
|
|
#)
|
|
|
|
set(RESOURCES jkqtplot_test.qrc )
|
|
|
|
set(UIS )
|
|
|
|
|
|
|
|
add_executable(${EXENAME} WIN32 ${SOURCES} ${HEADERS} ${RESOURCES} ${UIS})
|
|
|
|
target_include_directories(${EXENAME} PRIVATE ../../lib)
|
2019-11-18 22:59:06 +08:00
|
|
|
if(JKQtPlotter_BUILD_STATIC_LIBS)
|
2019-06-22 20:21:32 +08:00
|
|
|
target_link_libraries(${EXENAME} JKQTPlotterLib)
|
2019-11-18 22:59:06 +08:00
|
|
|
elseif(JKQtPlotter_BUILD_SHARED_LIBS)
|
2019-06-22 20:21:32 +08:00
|
|
|
target_link_libraries(${EXENAME} JKQTPlotterSharedLib)
|
2019-06-21 21:46:53 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Installation
|
2019-11-18 22:59:06 +08:00
|
|
|
install(TARGETS ${EXENAME} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
|
|
|
2019-11-10 22:35:07 +08:00
|
|
|
#Installation of Qt DLLs on Windows
|
|
|
|
jkqtplotter_deployqt(${EXENAME})
|