AnalysisSystemForRadionucli.../share/Armadillo/CMake/ArmadilloConfig.cmake

17 lines
756 B
CMake
Raw Normal View History

2024-06-04 15:25:02 +08:00
# - Config file for the Armadillo package
# It defines the following variables
# ARMADILLO_INCLUDE_DIRS - include directories for Armadillo
# ARMADILLO_LIBRARY_DIRS - library directories for Armadillo (normally not used!)
# ARMADILLO_LIBRARIES - libraries to link against
# Tell the user project where to find our headers and libraries
set(ARMADILLO_INCLUDE_DIRS "C:/Program Files (x86)/armadillo/include")
set(ARMADILLO_LIBRARY_DIRS "C:/Program Files (x86)/armadillo/lib")
# Our library dependencies (contains definitions for IMPORTED targets)
include("C:/Program Files (x86)/armadillo/share/Armadillo/CMake/ArmadilloLibraryDepends.cmake")
# These are IMPORTED targets created by ArmadilloLibraryDepends.cmake
set(ARMADILLO_LIBRARIES armadillo)