File: FindBtparse.cmake

package info (click to toggle)
tellico 3.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 23,468 kB
  • sloc: cpp: 73,731; xml: 8,383; ansic: 7,003; javascript: 3,059; python: 603; perl: 63; ada: 32; sh: 28; makefile: 22
file content (13 lines) | stat: -rw-r--r-- 480 bytes parent folder | download | duplicates (4)
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)