Last active
September 27, 2020 00:23
-
-
Save lukaswilkeer/100b708e3c50fcedde7c3f3af322ba0b to your computer and use it in GitHub Desktop.
Node addong node-gyp configurations.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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