sapling/eden/fs/win/mount/CMakeLists.txt
Puneet Kaushik 7913c918e2 Add eden_service_thrift as a dependency for the new CMake targets.
Summary: The new Windows CMake targets were failing to include the generated thrift headers on Sandcastle machines. Making eden_service_thrift a dependecy will make sure that the thrift generated files are created before we compile the code.

Reviewed By: simpkins

Differential Revision: D15536743

fbshipit-source-id: 4bedb8f33cddf5f7eb8f5b5ce52b2013728b38f7
2019-05-31 16:16:23 -07:00

22 lines
495 B
CMake

# Copyright (c) 2019-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.
file(GLOB CONFIG_SRCS "*.cpp")
add_library(
eden_win_mount STATIC
${CONFIG_SRCS}
)
target_link_libraries(
eden_win_mount
PUBLIC
eden_service_thrift
Folly::folly
ProjectedFS
)