sapling/eden/fs/nfs/xdr/CMakeLists.txt
Xavier Deguillard fc4b26c0ae nfs: make it compile with getdeps builds
Summary:
As the NFS bits are integrated into the rest of EdenFS, we need to make sure
the code compiles properly. The only major change was the removal of the
//common dependencies as these aren't available to OSS builds.

Reviewed By: genevievehelsel

Differential Revision: D26181750

fbshipit-source-id: 44f8ff335e543ab282f40fa7f8d28fc19cf4581c
2021-02-03 17:54:54 -08:00

18 lines
314 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.
add_library(
eden_nfs_xdr STATIC
Xdr.cpp Xdr.h
)
target_link_libraries(
eden_nfs_xdr
PUBLIC
Folly::folly
)
add_subdirectory(test)