Skip to content

Commit dd16d8b

Browse files
committed
Try a simpler gyp config
1 parent 908acca commit dd16d8b

File tree

5 files changed

+4
-66
lines changed

5 files changed

+4
-66
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
on:
2-
release:
3-
types: [created]
2+
workflow_dispatch:
43

54
env:
65
PYTHON_VERSION: '3.12'

.github/workflows/mac.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
on:
2-
release:
3-
types: [created]
2+
workflow_dispatch:
43

54
env:
65
PYTHON_VERSION: '3.12'

.github/workflows/windows.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
on:
2-
release:
3-
types: [created]
2+
workflow_dispatch:
43

54
env:
65
PYTHON_VERSION: '3.12'

node.gyp

Lines changed: 0 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -845,63 +845,6 @@
845845
}],
846846
],
847847
}, # node_core_target_name
848-
{
849-
'target_name': 'qode',
850-
'type': 'executable',
851-
852-
'defines': [
853-
'NODE_ARCH="<(target_arch)"',
854-
'NODE_PLATFORM="<(OS)"',
855-
'NODE_WANT_INTERNALS=1',
856-
],
857-
858-
'includes': [
859-
'qode/qode.gypi',
860-
],
861-
862-
'include_dirs': [
863-
'src',
864-
'deps/v8/include',
865-
'deps/postject',
866-
'deps/uv/include',
867-
],
868-
869-
'dependencies': [
870-
'<(node_lib_target_name)',
871-
'deps/histogram/histogram.gyp:histogram',
872-
],
873-
874-
'msvs_settings': {
875-
'VCLinkerTool': {
876-
'GenerateMapFile': 'true',
877-
'MapExports': 'true',
878-
'RandomizedBaseAddress': 2,
879-
'DataExecutionPrevention': 2,
880-
'AllowIsolation': 'true',
881-
'StackReserveSize': 0x800000,
882-
'SubSystem': '1', # Console application
883-
},
884-
},
885-
886-
'conditions': [
887-
['OS=="win"', {
888-
'libraries': [
889-
'Dbghelp.lib',
890-
'winmm.lib',
891-
'Ws2_32.lib',
892-
'Shlwapi.lib',
893-
],
894-
}],
895-
['OS=="win" and node_shared=="true"', {
896-
'dependencies': ['generate_node_def'],
897-
'msvs_settings': {
898-
'VCLinkerTool': {
899-
'ModuleDefinitionFile': '<(PRODUCT_DIR)/<(node_core_target_name).def',
900-
},
901-
},
902-
}],
903-
],
904-
}, # qode target
905848
{
906849
'target_name': '<(node_lib_target_name)',
907850
'type': '<(node_intermediate_lib_type)',

qode/qode.gypi

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
'.',
1616
'..',
1717
'../deps',
18-
],
19-
"cflags": [
20-
"-std=c++20"
18+
'../src',
2119
],
2220
'conditions': [
2321
['OS=="mac"', {

0 commit comments

Comments
 (0)