Skip to content
This repository was archived by the owner on Apr 10, 2025. It is now read-only.

Commit 2f4bf09

Browse files
committed
fix build cmake
1 parent b5dd1b9 commit 2f4bf09

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
# node-cld3
1+
# node-cld3
2+
3+
Wrapper around the cld3 library. (WIP)
4+
5+
1. Clone this repository
6+
2. Ensure you are using Node.js 18
7+
3. Run `npm install`
8+
4. Test with `node test/index.js`

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"dependencies": {
1515
"bindings": "^1.5.0",
1616
"cmake-js": "^7.2.1",
17-
"node-addon-api": "^6.0.0"
17+
"node-addon-api": "^6.1.0"
1818
}
1919
}

scripts/setup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const root = path.join(__dirname, '..');
99
const cld3Path = path.join(root, 'cld3');
1010

1111
execSync('rm -rf cld3', { cwd: root });
12-
execSync('git clone https://github.com/google/cld3.git', { cwd: root });
12+
execSync('git clone https://github.com/Aschen/cld3.git', { cwd: root });
1313
execSync('rm -rf cld3/.git', { cwd: root });
1414
execSync('mkdir -p build', { cwd: cld3Path });
1515
execSync('cmake -S . -B ./build', { cwd: cld3Path });

0 commit comments

Comments
 (0)