2022-04-19 04:42:18 +08:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2019-06-21 04:24:47 +08:00
|
|
|
|
|
|
|
set(EXAMPLE_NAME contourplot)
|
|
|
|
set(EXENAME jkqtptest_${EXAMPLE_NAME})
|
|
|
|
|
|
|
|
message( STATUS ".. Building Example ${EXAMPLE_NAME}" )
|
|
|
|
|
|
|
|
|
|
|
|
# Set up source files
|
|
|
|
set(SOURCES contourplot.cpp contourplotanimator.cpp )
|
|
|
|
set(HEADERS contourplotanimator.h )
|
|
|
|
set(RESOURCES )
|
|
|
|
set(UIS )
|
|
|
|
|
2022-08-27 04:32:48 +08:00
|
|
|
add_executable(${EXENAME} WIN32 ${SOURCES} ${HEADERS} ${RESOURCES} ${UIS})
|
|
|
|
target_link_libraries(${EXENAME} JKQTPExampleToolsLib)
|
2019-06-21 04:24:47 +08:00
|
|
|
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 04:24:47 +08:00
|
|
|
endif()
|
|
|
|
|
2022-07-23 03:41:07 +08:00
|
|
|
# precomiled headers to speed up compilation
|
|
|
|
if (JKQtPlotter_BUILD_WITH_PRECOMPILED_HEADERS)
|
|
|
|
target_precompile_headers(${EXENAME} REUSE_FROM jkqtptest_simpletest)
|
|
|
|
endif (JKQtPlotter_BUILD_WITH_PRECOMPILED_HEADERS)
|
2019-06-21 04:24:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
# 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})
|