Also copy gyp files when copying headers.
This commit is contained in:
parent
b411657b76
commit
5b862fdf60
1 changed files with 4 additions and 1 deletions
|
@ -28,9 +28,10 @@ HEADERS_DIRS = [
|
||||||
'deps/v8',
|
'deps/v8',
|
||||||
'deps/zlib',
|
'deps/zlib',
|
||||||
'deps/uv',
|
'deps/uv',
|
||||||
'tools',
|
|
||||||
]
|
]
|
||||||
HEADERS_FILES = [
|
HEADERS_FILES = [
|
||||||
|
'common.gypi',
|
||||||
|
'config.gypi',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,6 +67,8 @@ def copy_headers():
|
||||||
if extension not in HEADERS_SUFFIX:
|
if extension not in HEADERS_SUFFIX:
|
||||||
continue
|
continue
|
||||||
copy_source_file(os.path.join(dirpath, filename))
|
copy_source_file(os.path.join(dirpath, filename))
|
||||||
|
for other_file in HEADERS_FILES:
|
||||||
|
copy_source_file(os.path.join(NODE_DIR, other_file))
|
||||||
|
|
||||||
|
|
||||||
def copy_license():
|
def copy_license():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue