File: FindCatch.cmake

package info (click to toggle)
libjson-rpc-cpp 0.7.0-2.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,124 kB
  • sloc: cpp: 6,491; xml: 202; sh: 65; makefile: 13
file content (15 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
find_path(
	CATCH_INCLUDE_DIR 
	NAMES catch.hpp
	DOC "catch include dir"
)


set(CATCH_INCLUDE_DIRS ${CATCH_INCLUDE_DIR})


include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(catch DEFAULT_MSG
	CATCH_INCLUDE_DIR)
mark_as_advanced (CATCH_INCLUDE_DIR)