sapling/eden/fs/inodes/test/CMakeLists.txt
Xavier Deguillard c6b9788af8 win: move win/utils onto utils/
Summary: This will make it easier to build with Buck.

Reviewed By: fanzeyi

Differential Revision: D23827754

fbshipit-source-id: bf3bf4d607a08b9831f9dfea172b2e923a219561
2020-09-22 09:09:56 -07:00

33 lines
658 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_executable(
eden_inodes_test
CheckoutTest.cpp
DiffTest.cpp
GlobNodeTest.cpp
InodeBaseTest.cpp
InodeLoaderTest.cpp
InodeMapTest.cpp
InodePtrTest.cpp
InodeTimestampsTest.cpp
RemoveTest.cpp
RenameTest.cpp
TreeInodeTest.cpp
)
target_link_libraries(
eden_inodes_test
PRIVATE
eden_inodes
eden_testharness
eden_utils
eden_service_thrift_cpp
Folly::folly
${LIBGMOCK_LIBRARIES}
)
gtest_discover_tests(eden_inodes_test)