sapling/eden/fs/store/test/CMakeLists.txt
Xavier Deguillard 78fc38e27b store test: do not compile LocalStoreTest on Windows
Summary: The test doesn't compile on Windows, let's just ifdef it.

Reviewed By: genevievehelsel

Differential Revision: D25033804

fbshipit-source-id: 4f312f010f9d0db42cc9ae19df3f668e8e1c4665
2020-11-18 14:39:17 -08:00

20 lines
427 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 STORE_TEST_SRCS "*.cpp")
add_executable(
eden_store_test
${STORE_TEST_SRCS}
)
target_link_libraries(
eden_store_test
PUBLIC
eden_store
eden_model
eden_testharness
${LIBGMOCK_LIBRARIES}
)
gtest_discover_tests(eden_store_test)