mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 18:15:52 +08:00
19 lines
663 B
CMake
19 lines
663 B
CMake
# Package-config file for @libBasename@ library
|
|
# (part of JKQtPlotter, version @PROJECT_VERSION@)
|
|
#
|
|
# see: https://github.com/jkriege2/JKQtPlotter
|
|
# Copyright: (c) Jan Krieger <jan@jkrieger.de>
|
|
#
|
|
|
|
|
|
# package requires Qt 5/6
|
|
find_package(Qt@QT_VERSION_MAJOR@ COMPONENTS Core REQUIRED)
|
|
find_package(JKQTCommon@jkqtplotter_LIBNAME_VERSION_PART@ REQUIRED PATHS ${CMAKE_CURRENT_LIST_DIR} ${CMAKE_MODULE_PATH})
|
|
|
|
# include auto-generated targets.cmake file
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@JKQTP_CURRENT_TARGET_FILENAME@")
|
|
|
|
|
|
if(NOT TARGET JKQTPlotter::@libBasename@)
|
|
add_library(JKQTPlotter::@libBasename@ ALIAS JKQTPlotter@QT_VERSION_MAJOR@@libBasename@
|
|
endif() |