We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07cb195 commit bb1fb8dCopy full SHA for bb1fb8d
doc/Build.md
@@ -3,9 +3,32 @@
3
1. Install ```mingw-w64``` and set the enviroment variable.
4
2. clone the project.
5
3. use the following command
6
+```
7
+$ mkdir build
8
+$ cd build
9
+$ cmake .. -G "MinGW Makefiles"
10
+$ mingw32-make
11
```
- $ mkdir build
- $ cd build
- $ cmake .. -G "MinGW Makefiles"
- $ mingw32-make
- ```
12
+
13
+## Cmake build on Linux
14
15
+1. clone the project.
16
+2. use the following command
17
18
19
20
+$ cmake ..
21
+$ make
22
23
24
+## Cmake cross-build on Linux targeting windows
25
26
+1. Install ```mingw-w64``` and set the enviroment variable.
27
+2. clone the project.
28
+3. use the following command
29
30
31
32
+$ cmake .. -DNN_CROSS_COMPILE=ON
33
34
0 commit comments