Skip to content

Instantly share code, notes, and snippets.

@lukaswilkeer
Last active September 27, 2020 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukaswilkeer/100b708e3c50fcedde7c3f3af322ba0b to your computer and use it in GitHub Desktop.
Save lukaswilkeer/100b708e3c50fcedde7c3f3af322ba0b to your computer and use it in GitHub Desktop.
Node addong node-gyp configurations.
{
"targets": [
{
"target_name": "bidings",
"sources": ["analyzer.cc"]
},
],
"include_dirs": [
"lib/include",
"lib/nlohmann"
],
"dependencies": [
"<(module_root_dir)/lib/nlohmann/nlohmann.gyp:nlohmann"
],
"libraries": [
"-lnlohmann", "/home/lukaswilkeer/Documents/dev/work/stock-analytics/stock-parser/lib/nlohmann"
]
}
{
"targets": [{
"target_name": "nlohmann",
"type": "static_library",
"standalone_static_library": 1,
"dependencies": [],
"direct_dependent_settings": {
"include_dirs": [
"thindparty/hedley/",
"detail/conversations/",
"detail/input",
"detail/iterators",
"detail/meta",
"detailt/output"
]
},
"include_dirs": [
"nlohmann/detail",
"nlohmann/thindparty"
],
"sources": [
"nlohmann/adl_serializer.hpp",
"nlohmann/byte_container_with_subtype.hpp",
"nlohmann/json.hpp",
"nlohmann/json_fwd.hpp",
"nlohmann/ordered_map.hpp",
]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment