summaryrefslogtreecommitdiff
path: root/cmake/FindHamcrest.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindHamcrest.cmake')
-rw-r--r--cmake/FindHamcrest.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/cmake/FindHamcrest.cmake b/cmake/FindHamcrest.cmake
new file mode 100644
index 000000000..96fde96ba
--- /dev/null
+++ b/cmake/FindHamcrest.cmake
@@ -0,0 +1,13 @@
+# Find Hamcrest
+# Hamcrest_FOUND - system has Hamcrest lib
+# Hamcrest_JAR - the Hamcrest jar file
+
+find_package(Java REQUIRED)
+include(UseJava)
+
+find_jar(Hamcrest_JAR hamcrest-core)
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(Hamcrest DEFAULT_MSG Hamcrest_JAR)
+
+mark_as_advanced(Hamcrest_JAR)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback