You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Gal Schlezinger
45800d0841
|
6 years ago | |
---|---|---|
.ci | 6 years ago | |
esy.lock | 6 years ago | |
executable | 6 years ago | |
library | 6 years ago | |
test | 6 years ago | |
.gitignore | 6 years ago | |
README.md | 6 years ago | |
azure-pipelines.yml | 6 years ago | |
dune | 6 years ago | |
dune-project | 6 years ago | |
nsw.opam | 6 years ago | |
package.json | 6 years ago |
README.md
nsw
Contains the following libraries and executables:
nsw@0.0.0
│
├─test/
│ name: TestNsw.exe
│ main: TestNsw
│ require: nsw.lib
│
├─library/
│ library name: nsw.lib
│ namespace: Nsw
│ require:
│
└─executable/
name: NswApp.exe
main: NswApp
require: nsw.lib
Developing:
npm install -g esy
git clone <this-repo>
esy install
esy build
Running Binary:
After building the project, you can run the main binary that is produced.
esy x NswApp.exe
Running Tests:
# Runs the "test" command in `package.json`.
esy test