sapling/.buckconfig
Adam Simpkins ce0ce6fa4e move eden/fs/cli to eden/cli
Summary:
Move the code for the command-line tool up one directory, out of eden/fs.
This better separates the code so that eden/fs contains code for the edenfs
daemon, while eden/cli contains code for the command line tool.

Reviewed By: bolinfest

Differential Revision: D4888633

fbshipit-source-id: 5041e292c5353d05122eefe5db3257289e31239a
2017-04-14 11:39:01 -07:00

28 lines
740 B
Plaintext

[alias]
eden = //eden/cli:all
eden-cli = //eden/cli:cli
eden-daemon = //eden/fs/service:edenfs
[buildfile]
name = TARGETS
includes = //DEFS
# This is a nonstandard .buckconfig option. This is used with read_config().
[codebase]
mode = public
[thrift]
compiler = external/thrift.sh
cpp2_library = //external:thriftcpp2
cpp_reflection_library = //external:thriftcpp2
python_library = //external:thriftpy
[cxx]
gtest_dep = //external:gtest_main
cache_links = false
# TODO: It would be nice to fix the code so we can drop
# -Wno-unused-variable and -Wno-sign-compare
cxxflags = -std=gnu++1z -g -Werror -Wall \
-Wno-unused-parameter -Wno-unused-variable -Wno-sign-compare \
-Wno-unused-but-set-variable