diff --git a/.buckconfig b/.buckconfig new file mode 100644 index 000000000..e69de29bb diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..9e6e44291 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/buck-out/ +/.buckd/ +/buckaroo/ +.buckconfig.local +BUCKAROO_DEPS diff --git a/BUCK b/BUCK new file mode 100644 index 000000000..7dbdcf751 --- /dev/null +++ b/BUCK @@ -0,0 +1,14 @@ +include_defs('//BUCKAROO_DEPS') + +prebuilt_cxx_library( + name = 'algorithm', + header_only = True, + header_namespace = 'boost/algorithm', + exported_headers = subdir_glob([ + ('include/boost/algorithm', '**/*.hpp'), + ]), + visibility = [ + 'PUBLIC', + ], + deps = BUCKAROO_DEPS, +) diff --git a/buckaroo.json b/buckaroo.json new file mode 100644 index 000000000..9ad185930 --- /dev/null +++ b/buckaroo.json @@ -0,0 +1,23 @@ +{ + "name": "boost-algorithm", + "dependencies": { + "boost-utility": "1.63.0", + "boost-type-traits": "1.63.0", + "boost-assert": "1.63.0", + "boost-static-assert": "1.63.0", + "boost-regex": "1.63.0", + "boost-iterator": "1.63.0", + "boost-detail": "1.63.0", + "boost-mpl": "1.63.0", + "boost-throw-exception": "1.63.0", + "boost-exception": "1.63.0", + "boost-core": "1.63.0", + "boost-tuple": "1.63.0", + "boost-array": "1.63.0", + "boost-concept-check": "1.63.0", + "boost-config": "1.63.0", + "boost-range": "1.63.0", + "boost-unordered": "1.63.0", + "boost-function": "1.63.0" + } +}