aboutsummaryrefslogtreecommitdiffstats
path: root/tools/gr-usrptest/cmake/Modules/FindCppUnit.cmake
diff options
context:
space:
mode:
authorAndrej Rode <andrej.rode@ettus.com>2016-10-24 10:25:05 -0700
committerMartin Braun <martin.braun@ettus.com>2017-05-26 16:01:37 -0700
commit06ff34eaa9e147b11d2698308fa91a5260fee2d2 (patch)
tree6507be45db63761a39ecbb8f42956196f07acf2a /tools/gr-usrptest/cmake/Modules/FindCppUnit.cmake
parent91dff1fbdd5bf7c1afd83182ddce43ed2bec63da (diff)
downloaduhd-06ff34eaa9e147b11d2698308fa91a5260fee2d2.tar.gz
uhd-06ff34eaa9e147b11d2698308fa91a5260fee2d2.tar.bz2
uhd-06ff34eaa9e147b11d2698308fa91a5260fee2d2.zip
gr-usrptest: init OOT
Diffstat (limited to 'tools/gr-usrptest/cmake/Modules/FindCppUnit.cmake')
-rw-r--r--tools/gr-usrptest/cmake/Modules/FindCppUnit.cmake39
1 files changed, 39 insertions, 0 deletions
diff --git a/tools/gr-usrptest/cmake/Modules/FindCppUnit.cmake b/tools/gr-usrptest/cmake/Modules/FindCppUnit.cmake
new file mode 100644
index 000000000..f93ade341
--- /dev/null
+++ b/tools/gr-usrptest/cmake/Modules/FindCppUnit.cmake
@@ -0,0 +1,39 @@
+# 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}
+ ${CMAKE_INSTALL_PREFIX}/include
+ PATHS
+ /usr/local/include
+ /usr/include
+)
+
+FIND_LIBRARY(CPPUNIT_LIBRARIES
+ NAMES cppunit
+ HINTS ${PC_CPPUNIT_LIBDIR}
+ ${CMAKE_INSTALL_PREFIX}/lib
+ ${CMAKE_INSTALL_PREFIX}/lib64
+ 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)