mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
b0df7a1fd7
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
46 lines
1.4 KiB
CMake
46 lines
1.4 KiB
CMake
cmake_minimum_required(VERSION 3.23)
|
|
|
|
# add source files
|
|
target_sources(${lib_name} PRIVATE
|
|
jkqtmathtextnode.cpp
|
|
jkqtmathtexttextnode.cpp
|
|
jkqtmathtextbracenode.cpp
|
|
jkqtmathtextdecoratednode.cpp
|
|
jkqtmathtextfracnode.cpp
|
|
jkqtmathtextinstructionnode.cpp
|
|
jkqtmathtextboxinstructionnode.cpp
|
|
jkqtmathtextmodifyenvironmentnode.cpp
|
|
jkqtmathtextverticallistnode.cpp
|
|
jkqtmathtexthorizontallistnode.cpp
|
|
jkqtmathtextmatrixnode.cpp
|
|
jkqtmathtextsqrtnode.cpp
|
|
jkqtmathtextsubsupernode.cpp
|
|
jkqtmathtextsymbolnode.cpp
|
|
jkqtmathtextnodetools.cpp
|
|
jkqtmathtextwhitespacenode.cpp
|
|
jkqtmathtextnoopnode.cpp
|
|
jkqtmathtextverbatimnode.cpp
|
|
)
|
|
# ... and add headers
|
|
target_sources(${lib_name} PUBLIC FILE_SET HEADERS TYPE HEADERS
|
|
FILES
|
|
jkqtmathtextnode.h
|
|
jkqtmathtexttextnode.h
|
|
jkqtmathtextboxinstructionnode.h
|
|
jkqtmathtextmodifyenvironmentnode.h
|
|
jkqtmathtextbracenode.h
|
|
jkqtmathtextdecoratednode.h
|
|
jkqtmathtextfracnode.h
|
|
jkqtmathtextinstructionnode.h
|
|
jkqtmathtextlistnode.h
|
|
jkqtmathtextverticallistnode.h
|
|
jkqtmathtexthorizontallistnode.h
|
|
jkqtmathtextmatrixnode.h
|
|
jkqtmathtextsqrtnode.h
|
|
jkqtmathtextsubsupernode.h
|
|
jkqtmathtextsymbolnode.h
|
|
jkqtmathtextnodetools.h
|
|
jkqtmathtextwhitespacenode.h
|
|
jkqtmathtextnoopnode.h
|
|
jkqtmathtextverbatimnode.h
|
|
) |