sapling/eden/fs/fuse/CMakeLists.txt
Adam Simpkins 4bc8682391 update license headers in CMake files
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
2019-06-19 17:02:46 -07:00

24 lines
511 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.
file(GLOB FUSE_SRCS "*.cpp")
add_library(
eden_fuse STATIC
${FUSE_SRCS}
privhelper/PrivHelper.cpp
privhelper/PrivHelperConn.cpp
privhelper/PrivHelperServer.cpp
privhelper/UserInfo.cpp
)
target_link_libraries(
eden_fuse
PUBLIC
eden_fuse_privhelper
common_stats
Folly::folly
)
add_subdirectory(privhelper)