-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Latest node version and few small fixes #109
Changes from 4 commits
3dac9b3
d1e87c9
f160665
33f4db1
246668e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
/node_modules/ | ||
/spec/**/*.js | ||
*.dll | ||
.idea | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
sudo: required | ||
language: node_js | ||
node_js: | ||
- '4' | ||
- '5' | ||
- '6' | ||
- '7' | ||
- '8' | ||
- '9' | ||
- '10' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
matrix: | ||
fast_finish: true | ||
addons: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,6 +81,16 @@ to `libblp.dll` and ensure it ends up on the load PATH. | |
By default, node-gyp compiles ffi for x64 so make sure `libblp.dll` | ||
matches this architecture. | ||
|
||
#### Ubuntu, Debian | ||
```shell | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you add a newline between the heading and the code snippet? |
||
$ sudo apt-get install cmake git gcc | ||
$ git clone git://github.com/Kanma/BLPConverter.git | ||
$ cd BLPConverter | ||
$ cmake CMakeLists.txt -DWITH_LIBRARY=YES | ||
$ sudo make install | ||
$ sudo ldconfig | ||
``` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Great to finally have this in place, thanks! It'll resolve issue #88. Could you remove the $-indicator on each line so that it can be easily copy pasted? |
||
|
||
#### Other platforms | ||
|
||
Compile from source and ensure the library ends up on the load path. | ||
|
@@ -190,6 +200,16 @@ rename `StormLib.dll` to `libstorm.dll` and ensure it ends up on the load PATH. | |
By default, node-gyp compiles ffi for x64 so make sure `libstorm.dll` | ||
matches this architecture. | ||
|
||
#### Ubuntu, Debian | ||
```shell | ||
$ sudo apt-get install cmake git gcc zlib1g-dev | ||
$ git clone git://github.com/ladislav-zezula/StormLib.git | ||
$ cd StormLib | ||
$ cmake CMakeLists.txt -DBUILD_SHARED_LIBS=ON | ||
$ sudo make install | ||
$ sudo ldconfig | ||
``` | ||
|
||
#### Other platforms | ||
|
||
Compile from source and ensure the library ends up on the load path. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an editor specific ignore and should be in your global configuration (https://help.github.com/articles/ignoring-files/#create-a-global-gitignore and https://help.github.com/articles/ignoring-files/#explicit-repository-excludes)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thx