Skip to content

Commit 3339c02

Browse files
committed
* Ported tests to Buck
* Added note about Buck to README * Added Buckaroo.pm package
1 parent b572e3e commit 3339c02

File tree

5 files changed

+26
-3
lines changed

5 files changed

+26
-3
lines changed

.buckconfig

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[project]
2+
ignore = .git
3+
4+
[cxx]
5+
cxxflags = -std=c++14

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,15 @@ int main()
2525
}
2626
```
2727

28+
## Run the examples using Buck
29+
30+
The examples can be run easily using [Buck](https://buckbuild.com):
31+
32+
``` bash
33+
buck run examples/
34+
buck run test_package/
35+
```
36+
2837
## Support and current status
2938

3039
This was tested on Visual Studio 2015, GCC 5.2.0, MinGW GCC 5.1, Clang 3.6.2, and cygwin Clang 3.5.2.

buckaroo.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "ctti"
3+
}

examples/BUCK

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ cxx_binary(
33
srcs = [
44
'main.cpp',
55
],
6-
compiler_flags = [
7-
'-std=c++14',
8-
],
96
deps = [
107
'//:ctti',
118
],

test_package/BUCK

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
cxx_binary(
2+
name = 'test_package',
3+
srcs = [
4+
'main.cpp',
5+
],
6+
deps = [
7+
'//:ctti',
8+
],
9+
)

0 commit comments

Comments
 (0)