Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Updates BUCK files
  • Loading branch information
njlr committed Oct 19, 2018
1 parent 8636e7d commit 106293b
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 11 deletions.
12 changes: 1 addition & 11 deletions BUCK
Expand Up @@ -20,16 +20,6 @@ cxx_binary(
'test.cxx',
],
deps = [
':args',
],
)

cxx_binary(
name = 'gitlike',
srcs = [
'gitlike.cxx',
],
deps = [
':args',
'//:args',
],
)
19 changes: 19 additions & 0 deletions examples/BUCK
@@ -0,0 +1,19 @@
cxx_binary(
name = 'gitlike',
srcs = [
'gitlike.cxx',
],
deps = [
'//:args',
],
)

cxx_binary(
name = 'completion',
srcs = [
'completion.cxx',
],
deps = [
'//:args',
],
)
29 changes: 29 additions & 0 deletions test/BUCK
@@ -0,0 +1,29 @@
cxx_binary(
name = 'multiple-inclusion-1',
srcs = [
'multiple_inclusion_1.cxx',
],
deps = [
'//:args',
],
)

cxx_binary(
name = 'multiple-inclusion-2',
srcs = [
'multiple_inclusion_2.cxx',
],
deps = [
'//:args',
],
)

cxx_binary(
name = 'windows-h',
srcs = [
'windows_h.cxx',
],
deps = [
'//:args',
],
)

0 comments on commit 106293b

Please sign in to comment.