Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
{
|
|
"variables": {
|
|
"os_linux_compiler%": "gcc",
|
|
"build_v8_with_gn": "false"
|
|
},
|
|
"targets": [
|
|
{
|
|
"target_name": "msgpackr-extract",
|
|
"win_delay_load_hook": "false",
|
|
"sources": [
|
|
"src/extract.cpp",
|
|
],
|
|
"include_dirs": [
|
|
"<!(node -e \"require('nan')\")",
|
|
],
|
|
"conditions": [
|
|
["OS=='linux'", {
|
|
"variables": {
|
|
"gcc_version" : "<!(<(os_linux_compiler) -dumpversion | cut -d '.' -f 1)",
|
|
},
|
|
"cflags_cc": [
|
|
"-fPIC",
|
|
"-fvisibility=hidden",
|
|
"-fvisibility-inlines-hidden",
|
|
],
|
|
"conditions": [
|
|
["gcc_version>=7", {
|
|
"cflags": [
|
|
"-Wimplicit-fallthrough=2",
|
|
],
|
|
}],
|
|
],
|
|
"ldflags": [
|
|
"-fPIC",
|
|
"-fvisibility=hidden"
|
|
],
|
|
"cflags": [
|
|
"-fPIC",
|
|
"-fvisibility=hidden",
|
|
"-O3"
|
|
],
|
|
}],
|
|
],
|
|
}
|
|
]
|
|
}
|
|
|