File: FindBtparse.cmake

package info (click to toggle)
tellico 4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 29,420 kB
  • sloc: cpp: 89,950; xml: 41,049; ansic: 7,011; javascript: 454; python: 354; ada: 32; sh: 28; perl: 17; makefile: 13
file content (13 lines) | stat: -rw-r--r-- 480 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Btparse_FOUND - system has the btparse library
# Btparse_INCLUDE_DIRS - the btparse include directory
# Btparse_LIBRARIES - The libraries needed to use btparse

find_path(Btparse_INCLUDE_DIRS
    NAMES btparse.h
)
find_library(Btparse_LIBRARIES NAMES btparse)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Btparse FOUND_VAR Btparse_FOUND REQUIRED_VARS Btparse_INCLUDE_DIRS Btparse_LIBRARIES)

mark_as_advanced(Btparse_INCLUDE_DIRS Btparse_LIBRARIES)