File tree Expand file tree Collapse file tree 4 files changed +1013
-3836
lines changed Expand file tree Collapse file tree 4 files changed +1013
-3836
lines changed Original file line number Diff line number Diff line change @@ -37,19 +37,36 @@ The easiest way to get started is to install [pixi](https://prefix.dev/docs/pixi
37
37
38
38
### Manually
39
39
First install the required dependencies:
40
- * ` arrow-cpp ` (required by Rerun)
41
40
* ` eigen ` and ` opencv ` (required by this example)
42
- * ` cmake ` and ` ninja ` (build tools )
41
+ * ` cmake ` (for building )
43
42
44
- Build using:
45
43
44
+ ### Linux & Mac
45
+
46
+ Build:
46
47
``` bash
47
- mkdir build
48
- cd build
49
- cmake ..
50
- cmake --build . -- -j8
48
+ cmake -B build
49
+ cmake --build build -j
51
50
```
52
51
53
52
Then run the binary with:
54
-
55
53
` build/rerun_ext_example `
54
+
55
+
56
+ ### Windows using Visual Studio 2022
57
+
58
+
59
+ Build
60
+ ``` cmd
61
+ cmake -B build -G 'Visual Studio 17 2022'
62
+ cmake --build build
63
+ ```
64
+ Instead of building via CMake you can also open ` build/rerun_external_cpp_proj.sln ` in Visual Studio and build & run from there.
65
+
66
+ Then run the binary with
67
+ ``` cmd
68
+ build\RelWithDebInfo\rerun_ext_example.exe
69
+ ```
70
+ Make sure that all dependent dlls (OpenCV & Eigen) are in PATH or next to the executable.
71
+
72
+
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json" ,
3
+ "version" : " 0.2" ,
4
+ "usePnP" : true ,
5
+ "ignoreWords" : [
6
+ " eigen" ,
7
+ " Eigen" ,
8
+ " pixi" ,
9
+ " srcset"
10
+ ]
11
+ }
You can’t perform that action at this time.
0 commit comments