2024-01-15 20:38:50 +08:00
|
|
|
cmake_minimum_required(VERSION 3.23)
|
2019-06-21 04:24:47 +08:00
|
|
|
|
|
|
|
set(EXAMPLE_NAME jkqtmathtext_simpletest)
|
|
|
|
set(EXENAME jkqtptest_${EXAMPLE_NAME})
|
|
|
|
|
|
|
|
message( STATUS ".. Building Example ${EXAMPLE_NAME}" )
|
|
|
|
|
|
|
|
|
|
|
|
# Set up source files
|
|
|
|
set(SOURCES
|
|
|
|
${EXAMPLE_NAME}.cpp
|
|
|
|
)
|
|
|
|
set(HEADERS )
|
|
|
|
set(RESOURCES )
|
|
|
|
set(UIS )
|
|
|
|
|
|
|
|
add_executable(${EXENAME} WIN32 ${SOURCES} ${HEADERS} ${RESOURCES} ${UIS})
|
|
|
|
target_include_directories(${EXENAME} PRIVATE ../../lib)
|
NEW/BREAKING: provide general targets JKQTPlotter5/6::JKQTPlotter5/6, JKQTPlotter5/6::JKQTMathText5/6, ... which are independent of the type of build (shared/static)
NEW/BREAKING: refactor CMake-Code, so static/dynamic switch is done via <code>BUILD_SHARED_LIBS</code>, which retires <code>JKQtPlotter_BUILD_STATIC_LIBS</code>, <code>JKQtPlotter_BUILD_SHARED_LIBS</code> and removes the capability to build static and shared libraries in one location (fixes issue #104)
NEW: prepareed library for CMake's <a href="https://cmake.org/cmake/help/latest/module/FetchContent.html">FetchContent</a>-API
NEW: the different sub-libraries JKQTPlotter, JKQTFastPlotter (DEPRECATED), JKQTMath, JKQTMathText can be activated/deactivated with CMake options JKQtPlotter_BUILD_LIB_JKQTPLOTTER, JKQtPlotter_BUILD_LIB_JKQTFASTPLOTTER, JKQtPlotter_BUILD_LIB_JKQTMATHTEXT, JKQtPlotter_BUILD_LIB_JKQTMATH
2024-01-16 20:05:52 +08:00
|
|
|
target_link_libraries(${EXENAME} ${jkqtplotter_namespace}JKQTMathText${jkqtplotter_LIBNAME_VERSION_PART})
|
|
|
|
|
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})
|