Skip to content

Commit

Permalink
More Windows build instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jayfoad committed Feb 23, 2018
1 parent 1d6a92a commit d3b41b5
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,28 @@ modified to make it easy to call from Dyalog APL.

## Building the shared library

### Windows (32-bit)

```
$ cmake . -DCMAKE_BUILD_TYPE=Release
$ cmake .
$ cmake --build . --config Release
```

### Windows (64-bit)

Look at the generator that `cmake .` used above, and manually specify the `Win64` variant. For example:

```
$ cmake . -G "Visual Studio 15 2017 Win64"
$ cmake --build . --config Release
```

(Why specify that we want a Release build in two places? See [this
explanation](https://stackoverflow.com/a/24470998/5747713).)
### Non-Windows

```
$ cmake . -DCMAKE_BUILD_TYPE=Release
$ cmake --build .
```


## Using it from APL
Expand Down

0 comments on commit d3b41b5

Please sign in to comment.