mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
Merge branch 'develop' into c++17
This commit is contained in:
commit
df21840feb
0
.buckconfig
Normal file
0
.buckconfig
Normal file
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
/buck-out/
|
||||||
|
/.buckd/
|
||||||
|
/buckaroo/
|
||||||
|
.buckconfig.local
|
||||||
|
BUCKAROO_DEPS
|
||||||
11
BUCK
Normal file
11
BUCK
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
prebuilt_cxx_library(
|
||||||
|
name = 'chaiscript',
|
||||||
|
header_only = True,
|
||||||
|
header_namespace = 'chaiscript',
|
||||||
|
exported_headers = subdir_glob([
|
||||||
|
('include/chaiscript', '**/*.hpp'),
|
||||||
|
]),
|
||||||
|
visibility = [
|
||||||
|
'PUBLIC',
|
||||||
|
],
|
||||||
|
)
|
||||||
3
buckaroo.json
Normal file
3
buckaroo.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"name": "ChaiScript"
|
||||||
|
}
|
||||||
12
samples/BUCK
Normal file
12
samples/BUCK
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
cxx_binary(
|
||||||
|
name = 'example',
|
||||||
|
srcs = [
|
||||||
|
'example.cpp',
|
||||||
|
],
|
||||||
|
compiler_flags = [
|
||||||
|
'-std=c++14',
|
||||||
|
],
|
||||||
|
deps = [
|
||||||
|
'//:chaiscript',
|
||||||
|
],
|
||||||
|
)
|
||||||
Loading…
x
Reference in New Issue
Block a user