diff options
author | Josh Blum <josh@joshknows.com> | 2011-09-24 08:34:46 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-09-24 08:34:46 -0700 |
commit | 3e7c061f3020bf6d5cf5cff47a144e9a23f427ea (patch) | |
tree | 48fdaf5dc2a680effaedfeb1b31057f159b3b343 /gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake | |
parent | 942fa1c2e226ac00ac8ac0d8ca1538f7015d0c5a (diff) |
howto: updated find gruel and core modules to match recommended style
Diffstat (limited to 'gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake')
-rw-r--r-- | gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake b/gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake index c142c905ef..3c21af91de 100644 --- a/gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake +++ b/gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake @@ -1,11 +1,11 @@ INCLUDE(FindPkgConfig) -PKG_CHECK_MODULES(GRUEL gnuradio-core) -IF(NOT GRUEL_FOUND) +PKG_CHECK_MODULES(PC_GRUEL gnuradio-core QUIET) FIND_PATH( GRUEL_INCLUDE_DIRS NAMES gruel/attributes.h HINTS $ENV{GRUEL_DIR}/include + ${PC_GRUEL_INCLUDE_DIRS} PATHS /usr/local/include /usr/include ) @@ -14,6 +14,7 @@ FIND_LIBRARY( GRUEL_LIBRARIES NAMES gruel HINTS $ENV{GRUEL_DIR}/lib + ${PC_GRUEL_LIBRARIES} PATHS /usr/local/lib /usr/local/lib64 /usr/lib @@ -22,5 +23,4 @@ FIND_LIBRARY( INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(GRUEL DEFAULT_MSG GRUEL_LIBRARIES GRUEL_INCLUDE_DIRS) - -ENDIF(NOT GRUEL_FOUND) +MARK_AS_ADVANCED(GRUEL_LIBRARIES GRUEL_INCLUDE_DIRS) |