source: trunk/FACT++/cmake/FindCCfits.cmake@ 19396

Last change on this file since 19396 was 18994, checked in by tbretz, 7 years ago
Cmake stuff.
File size: 613 bytes
Line 
1# Try to find the package via pkg-config
2PKG_CHECK_MODULES(CFITSIO cfitsio QUIET)
3
4# Try to locate the package in the default path
5# and in the path provided by pkg-config
6FIND_PATH(CCFITS_INCLUDE_DIR NAMES CCfits/CCfits PATHS ${CCFITS_INCLUDE_DIRS})
7FIND_LIBRARY(CCFITS_LIBRARY NAMES CCfits PATHS ${CCFITS_LIBRARY_DIRS})
8
9# Check if CFITSIOLIBARARY and CFITSIOINCLUDE_DIR is set
10# Print a message otherwise
11FIND_PACKAGE_HANDLE_STANDARD_ARGS(CCfits DEFAULT_MSG CCFITS_LIBRARY CCFITS_INCLUDE_DIR)
12
13# Mark those variables to be displayed as 'advanced' in the GUI
14MARK_AS_ADVANCED(CCFITS_LIBRARY CCFITS_INCLUDE_DIR)
Note: See TracBrowser for help on using the repository browser.