From 61c28eced50ec0f8e448339e0c774a4ec9a58c4e Mon Sep 17 00:00:00 2001 From: Nick Downing Date: Tue, 4 Feb 2020 02:53:21 +1100 Subject: [PATCH] Change yarn to pnpm, hackily include my home directory for building --- .gitignore | 4 +--- binding.gyp | 3 ++- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index edfb991..e9d2a61 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,4 @@ /index.vocab.0 /ndcode-zettair-*.tgz /node_modules -/package-lock.json -/yarn.lock -/yarn-error.log +/pnpm-lock.yaml diff --git a/binding.gyp b/binding.gyp index 84f53b0..9dfa2f8 100644 --- a/binding.gyp +++ b/binding.gyp @@ -3,7 +3,8 @@ { "target_name": "zettair", "sources": ["zettair.cpp"], - "libraries": ["-lzet"] + "include_dirs": ["/home/nick/include"], + "libraries": ["-L/home/nick/lib -lzet"] } ] } -- 2.34.1