File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ jobs:
113
113
114
114
- name : Install Dependencies and Build
115
115
if : ${{ !matrix.docker }}
116
- run : pnpm install --verbose
116
+ run : pnpm install
117
117
118
118
- name : Prebuild
119
119
if : ${{ !matrix.docker }}
Original file line number Diff line number Diff line change 46
46
],
47
47
48
48
'include_dirs' : [
49
- "vendor" ,
50
49
'<(module_root_dir)/build/libzmq/include' ,
51
50
"<!@(node -p \" require('node-addon-api').include\" )"
52
51
],
83
82
['OS == "mac"' , {
84
83
'libraries' : [
85
84
'<(module_root_dir)/build/libzmq/lib/libzmq.a' ,
86
- '-lsodium' ,
85
+ "<!@(pkg-config libsodium --libs)" ,
87
86
],
88
87
}],
89
88
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ function main() {
78
78
writeFileSync ( clang_format_file , "" )
79
79
}
80
80
81
- const cmake_configure = `cmake -S "${ src_dir } " -B ./build ${ build_options } -DCMAKE_BUILD_TYPE=${ CMAKE_BUILD_TYPE } -DCMAKE_INSTALL_PREFIX="${ libzmq_install_prefix } " -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_STATIC=ON -DBUILD_TESTS=OFF -DBUILD_SHARED=OFF -DWITH_DOCS=OFF`
81
+ const cmake_configure = `cmake -S "${ src_dir } " -B ./build ${ build_options } -DCMAKE_BUILD_TYPE=${ CMAKE_BUILD_TYPE } -DCMAKE_INSTALL_PREFIX="${ libzmq_install_prefix } " -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_STATIC=ON -DBUILD_TESTS=OFF -DBUILD_SHARED=OFF -DWITH_DOCS=OFF -DWITH_LIBSODIUM=ON -DWITH_LIBSODIUM_STATIC=ON `
82
82
console . log ( cmake_configure )
83
83
exec ( cmake_configure , execOptions )
84
84
You can’t perform that action at this time.
0 commit comments