mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 08:46:53 +08:00
13 lines
151 B
Python
13 lines
151 B
Python
cxx_binary(
|
|
name = 'example',
|
|
srcs = [
|
|
'example.cpp',
|
|
],
|
|
compiler_flags = [
|
|
'-std=c++14',
|
|
],
|
|
deps = [
|
|
'//:chaiscript',
|
|
],
|
|
)
|