You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Doing so will make some things run faster.
23
23
24
24
Finally, Visual Studio users should usually do everything in 64bit mode. By default Visual Studio is 32bit, both in its outputs and its own execution, so you have to explicitly tell it to use 64bits. Since it's not the 1990s anymore you probably want to use 64bits. Do that with a cmake invocation like this:
25
25
```bash
26
-
cmake .. -G "Visual Studio 14 2015 Win64" -T host=x64
26
+
cmake .. -G "Visual Studio 14 2015 Win64" -T host=x64
27
27
```
28
28
29
29
## Compiling your own C++ programs that use dlib
@@ -48,6 +48,10 @@ cd dlib
48
48
pip install .
49
49
```
50
50
51
+
It's possible to change build settings by passing parameters to `setup.py` or `DLIB_*` environment variables.
52
+
For example, setting the environment variable `DLIB_NO_GUI_SUPPORT` to `ON` will add the cmake option
53
+
`-DDLIB_NO_GUI_SUPPORT=ON`.
54
+
51
55
52
56
## Running the unit test suite
53
57
@@ -69,4 +73,3 @@ This library is licensed under the Boost Software License, which can be found in
69
73
## dlib sponsors
70
74
71
75
This research is based in part upon work supported by the Office of the Director of National Intelligence (ODNI), Intelligence Advanced Research Projects Activity (IARPA) under contract number 2014-14071600010. The views and conclusions contained herein are those of the authors and should not be interpreted as necessarily representing the official policies or endorsements, either expressed or implied, of ODNI, IARPA, or the U.S. Government.
0 commit comments