Skip to content

Commit

Permalink
deps: fix include_dirs of nbytes
Browse files Browse the repository at this point in the history
PR-URL: #53862
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
zcbenz committed Jul 18, 2024
1 parent bcec922 commit 014dad5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deps/nbytes/nbytes.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
{
'target_name': 'nbytes',
'type': 'static_library',
'include_dirs': ['src', 'include'],
'include_dirs': ['include'],
'direct_dependent_settings': {
'include_dirs': ['src', 'include'],
'include_dirs': ['include'],
},
'sources': [ '<@(nbytes_sources)' ]
},
Expand Down
2 changes: 1 addition & 1 deletion deps/nbytes/unofficial.gni
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import("$node_v8_path/gni/v8.gni")
# prevent accidental edits from contributors.
template("nbytes_gn_build") {
config("nbytes_config") {
include_dirs = [ "." ]
include_dirs = [ "include" ]
}

gypi_values = exec_script("../../tools/gypi_to_gn.py",
Expand Down

0 comments on commit 014dad5

Please sign in to comment.