mirror of
https://github.com/facebook/proxygen.git
synced 2025-09-11 12:30:43 +03:00
Summary: Copyright header was missing from cmake files and Open Source Bot complained about it. Adding header to be compliant with our oss policies Reviewed By: yns88 Differential Revision: D14603978 fbshipit-source-id: fab9e781969e10038537ebbdab87b1272f093bf1
12 lines
309 B
CMake
12 lines
309 B
CMake
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
include(FindPackageHandleStandardArgs)
|
|
find_path(PCRE_INCLUDE_DIR NAMES pcre.h)
|
|
find_library(PCRE_LIBRARY NAMES pcre)
|
|
find_package_handle_standard_args(
|
|
PCRE
|
|
DEFAULT_MSG
|
|
PCRE_LIBRARY
|
|
PCRE_INCLUDE_DIR
|
|
)
|
|
mark_as_advanced(PCRE_INCLUDE_DIR PCRE_LIBRARY)
|