Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
doc: describe using multiple link-module on win
Current description seems to suggest that only one linked-module can be
provided. This modifies the example to show that multiple
inked-modules can be used.
  • Loading branch information
bzoz committed May 16, 2018
commit 15692c54372bd084b2b008f7f4860842d317931a
5 changes: 3 additions & 2 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,9 @@ $ ./configure --link-module '/root/myModule.js' --link-module './myModule2.js'

### Windows

To make `./myCustomModule.js` available via `require('myCustomModule')`.
To make `./myModule.js` available via `require('myModule')` and
`./myModule2.js` available via `require('myModule2')`
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe a colon at the end?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done


```console
> .\vcbuild link-module './myCustomModule.js'
> .\vcbuild link-module './myModule.js' link-module './myModule2.js'
```