File: FindCapstats.cmake

package info (click to toggle)
bifcl 1.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 516 kB
  • sloc: yacc: 646; lex: 456; sh: 195; cpp: 146; makefile: 33; ansic: 8
file content (15 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (23)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# - Try to find capstats program
#
# Usage of this module as follows:
#
#  find_package(Capstats)
#
# Variables defined by this module:
#
#  CAPSTATS_FOUND             capstats binary found
#  Capstats_EXE               path to the capstats executable binary

find_program(CAPSTATS_EXE capstats)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Capstats DEFAULT_MSG CAPSTATS_EXE)