mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
40 lines
1.6 KiB
CMake
40 lines
1.6 KiB
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
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)
|
|
if(JKQtPlotter_BUILD_STATIC_LIBS)
|
|
target_link_libraries(${EXENAME} JKQTPlotterLib)
|
|
elseif(JKQtPlotter_BUILD_SHARED_LIBS)
|
|
target_link_libraries(${EXENAME} JKQTPlotterSharedLib)
|
|
endif()
|
|
|
|
|
|
|
|
# Installation
|
|
install(TARGETS ${EXENAME} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
|
|
#Installation of Qt DLLs on Windows
|
|
jkqtplotter_deployqt(${EXENAME})
|