mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 18:15:52 +08:00
24 lines
743 B
CMake
24 lines
743 B
CMake
cmake_minimum_required(VERSION 3.23)
|
|
|
|
|
|
message( STATUS )
|
|
message( STATUS "............................................................................." )
|
|
message( STATUS ".. BUILDING TOOLS" )
|
|
message( STATUS "............................................................................." )
|
|
if (JKQtPlotter_BUILD_WITH_PRECOMPILED_HEADERS)
|
|
message( STATUS ".. - Precompiled Header: ON" )
|
|
else()
|
|
message( STATUS ".. - Precompiled Header: OFF")
|
|
endif()
|
|
|
|
message( STATUS "............................................................................." )
|
|
|
|
|
|
|
|
|
|
# examples specific to JKQtMathText
|
|
message( STATUS ".. BUILDING TOOLS FOR JKQTMATHTEXT:" )
|
|
add_subdirectory(jkqtmathtext_render)
|
|
add_subdirectory(jkqtplotter_doc_imagegenerator)
|
|
|