-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathleekscript.gyp
More file actions
32 lines (32 loc) · 815 Bytes
/
leekscript.gyp
File metadata and controls
32 lines (32 loc) · 815 Bytes
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
{
"targets": [
{
"target_name": "leekscript",
"type": "executable",
"sources": [
'<!@(find src -name "*.cpp")',
'lib/utf8.cpp'
],
"libraries": [
"-lm", "-lgmp", "-L/usr/lib/llvm-6.0/lib", "-lLLVM-6.0"
],
"cflags": [
'-O0', '-std=c++17', '-g3', '-Wall', '-Wno-pmf-conversions'
]
}, {
"target_name": "leekscript-test",
"type": "executable",
"sources": [
'<!@(find src -name "*.cpp" ! -name "TopLevel.cpp")',
'<!@(find test -name "*.cpp")',
'lib/utf8.cpp'
],
"libraries": [
"-lm", "-lgmp", "-L/usr/lib/llvm-6.0/lib", "-lLLVM-6.0"
],
"cflags": [
'-O0', '-std=c++17', '-g3', '-Wall', '-Wno-pmf-conversions'
]
}
]
}