aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTaylor C. Richberger <taywee@gmx.com>2018-10-20 13:31:54 -0600
committerGitHub <noreply@github.com>2018-10-20 13:31:54 -0600
commit34292e2a577325088780d54b94db56e5c9b270e9 (patch)
tree5472428dbde28fc076fad0a063dd806c3486f790 /test
parentMerge pull request #65 from Rholais/patch-1 (diff)
parent * Updates BUCK files (diff)
downloadargs.hxx-34292e2a577325088780d54b94db56e5c9b270e9.tar.xz
Merge pull request #67 from njlr/master
Buck build support
Diffstat (limited to 'test')
-rw-r--r--test/BUCK29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/BUCK b/test/BUCK
new file mode 100644
index 0000000..de76295
--- /dev/null
+++ b/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',
+ ],
+) \ No newline at end of file