mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2025-01-12 17:00:32 +08:00
13 lines
305 B
CMake
13 lines
305 B
CMake
|
cmake_minimum_required(VERSION 3.23)
|
||
|
|
||
|
# add source files
|
||
|
target_sources(${lib_name} PRIVATE
|
||
|
jkqtmathtextparser.cpp
|
||
|
jkqtmathtextlatexparser.cpp
|
||
|
)
|
||
|
# ... and add headers
|
||
|
target_sources(${lib_name} PUBLIC FILE_SET HEADERS TYPE HEADERS
|
||
|
FILES
|
||
|
jkqtmathtextparser.h
|
||
|
jkqtmathtextlatexparser.h
|
||
|
)
|