diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2013-03-27 19:57:30 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-03-27 19:57:30 -0700 |
commit | d7cde125dc3661a62e1013a4a017f0f1efa46e6e (patch) | |
tree | 9a745fb6968d1d4ed4dac70002aa0adb641d2198 /gr-howto-write-a-block/cmake/Modules/FindCppUnit.cmake | |
parent | 0896ec499f7881443b93668824d21e34fbeb7da3 (diff) |
howto: removed gr-howto-write-a-block
the canonical out-of-tree module is now in:
gr-utils/python/modtool/gr-newmod
Diffstat (limited to 'gr-howto-write-a-block/cmake/Modules/FindCppUnit.cmake')
-rw-r--r-- | gr-howto-write-a-block/cmake/Modules/FindCppUnit.cmake | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/gr-howto-write-a-block/cmake/Modules/FindCppUnit.cmake b/gr-howto-write-a-block/cmake/Modules/FindCppUnit.cmake deleted file mode 100644 index 9af308f84b..0000000000 --- a/gr-howto-write-a-block/cmake/Modules/FindCppUnit.cmake +++ /dev/null @@ -1,36 +0,0 @@ -# http://www.cmake.org/pipermail/cmake/2006-October/011446.html -# Modified to use pkg config and use standard var names - -# -# Find the CppUnit includes and library -# -# This module defines -# CPPUNIT_INCLUDE_DIR, where to find tiff.h, etc. -# CPPUNIT_LIBRARIES, the libraries to link against to use CppUnit. -# CPPUNIT_FOUND, If false, do not try to use CppUnit. - -INCLUDE(FindPkgConfig) -PKG_CHECK_MODULES(PC_CPPUNIT "cppunit") - -FIND_PATH(CPPUNIT_INCLUDE_DIRS - NAMES cppunit/TestCase.h - HINTS ${PC_CPPUNIT_INCLUDE_DIR} - PATHS - /usr/local/include - /usr/include -) - -FIND_LIBRARY(CPPUNIT_LIBRARIES - NAMES cppunit - HINTS ${PC_CPPUNIT_LIBDIR} - PATHS - ${CPPUNIT_INCLUDE_DIRS}/../lib - /usr/local/lib - /usr/lib -) - -LIST(APPEND CPPUNIT_LIBRARIES ${CMAKE_DL_LIBS}) - -INCLUDE(FindPackageHandleStandardArgs) -FIND_PACKAGE_HANDLE_STANDARD_ARGS(CPPUNIT DEFAULT_MSG CPPUNIT_LIBRARIES CPPUNIT_INCLUDE_DIRS) -MARK_AS_ADVANCED(CPPUNIT_LIBRARIES CPPUNIT_INCLUDE_DIRS) |