File: FindCapstats.cmake

package info (click to toggle)
broccoli-python 0.61%2B1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 456 kB
  • sloc: python: 407; sh: 200; makefile: 21
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)