File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -46,23 +46,22 @@ For Level Zero memory provider tests:
46
46
47
47
### Linux
48
48
49
- Executable and binaries will be in ** build/bin**
49
+ Executable and binaries will be in ** build/bin** .
50
+ The ` {build_config} ` can be either ` Debug ` or ` Release ` .
50
51
51
52
``` bash
52
- $ mkdir build
53
- $ cd build
54
- $ cmake {path_to_source_dir}
55
- $ make
53
+ $ cmake -B build -DCMAKE_BUILD_TYPE={build_config}
54
+ $ cmake --build build -j $( nproc)
56
55
```
57
56
58
57
### Windows
59
58
60
- Generating Visual Studio Project. EXE and binaries will be in ** build/bin/{build_config}**
59
+ Generating Visual Studio Project. EXE and binaries will be in ** build/bin/{build_config}** .
60
+ The ` {build_config} ` can be either ` Debug ` or ` Release ` .
61
61
62
62
``` bash
63
- $ mkdir build
64
- $ cd build
65
- $ cmake {path_to_source_dir} -G " Visual Studio 15 2017 Win64"
63
+ $ cmake -B build -G " Visual Studio 15 2017 Win64"
64
+ $ cmake --build build --config {build_config} -j $Env :NUMBER_OF_PROCESSORS
66
65
```
67
66
68
67
### Benchmark
You can’t perform that action at this time.
0 commit comments