mirror of
https://github.com/facebook/sapling.git
synced 2025-01-01 01:25:49 +03:00
4bc8682391
Summary: Update the copyright & license headers in CMake files to reflect the relicensing to GPLv2 Reviewed By: wez Differential Revision: D15487079 fbshipit-source-id: 715e559464c19a0070d6e55a095b3fc7d61ad2f8
17 lines
454 B
CMake
17 lines
454 B
CMake
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This software may be used and distributed according to the terms of the
|
|
# GNU General Public License version 2.
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_path(SQLITE3_INCLUDE_DIR NAMES sqlite3.h)
|
|
find_library(SQLITE3_LIBRARY NAMES sqlite3)
|
|
find_package_handle_standard_args(
|
|
SQLITE3
|
|
DEFAULT_MSG
|
|
SQLITE3_INCLUDE_DIR
|
|
SQLITE3_LIBRARY
|
|
)
|
|
mark_as_advanced(SQLITE3_INCLUDE_DIR SQLITE3_LIBRARY)
|