blitz icon indicating copy to clipboard operation
blitz copied to clipboard

document and test (on travis/appveyor) how to find Blitz++ library from CMake

Open slayoo opened this issue 6 years ago • 0 comments

Just for the record, if you only want to find Blitz++ library from CMake, this works:

find_package(PkgConfig)
pkg_check_modules(BLITZ QUIET blitz>=0.10)
if (NOT BLITZ_FOUND)
    ...

Originally posted by @slayoo in https://github.com/blitzpp/blitz/issues/4#issuecomment-174218649

slayoo avatar May 06 '19 15:05 slayoo