1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# - Config file for the MathGL package
# It defines the following variables
set(MathGL_INCLUDE_DIRS "@MathGL_INSTALL_INCLUDE_DIR@")
set(MathGL_LIBRARIES_DIRS "@MathGL_INSTALL_LIB_DIR@")
set(MathGL_HAVE_QT5 "@enable-qt5@")
set(MathGL_HAVE_QT4 "@enable-qt4@")
set(MathGL_HAVE_WX "@enable-wx@")
set(MathGL_HAVE_FLTK "@enable-fltk@")
set(MathGL_HAVE_GLUT "@enable-glut@")
# Compute paths
get_filename_component(MathGL_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
# Our library dependencies (contains definitions for IMPORTED targets)
if(NOT TARGET mgl AND NOT MathGL_BINARY_DIR)
include("${MathGL_CMAKE_DIR}/MathGLTargets.cmake")
endif()
|