-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gyp
34 lines (34 loc) · 845 Bytes
/
build.gyp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"targets": [
{
"target_name": "pulsar",
"type": "static_library",
"include_dirs": [ "include" ],
"sources": [
"src/pulsar/bytecode.cpp",
"src/pulsar/binary/reader.cpp",
"src/pulsar/binary/writer.cpp",
"src/pulsar/lexer.cpp",
"src/pulsar/parser.cpp",
"src/pulsar/runtime.cpp",
"src/pulsar/unicode.cpp",
"src/pulsar/utf8.cpp"
],
"direct_dependent_settings": {
"include_dirs": [ "include" ]
},
"conditions": [
["OS!=\"win\"", {
"cflags": [
"-std=c++20", "-Wall", "-Wextra", "-Wpedantic", "-Werror"
]
}]
],
"msvs_settings": {
"VCCLCompilerTool": {
"AdditionalOptions": [ "/std:c++20", "/W4", "/WX", "/analyze-" ],
}
}
}
]
}