File tree Expand file tree Collapse file tree 3 files changed +88
-72
lines changed Expand file tree Collapse file tree 3 files changed +88
-72
lines changed Original file line number Diff line number Diff line change 10
10
.cache
11
11
12
12
# C++ builds
13
- build
14
- build_release
15
- build_debug
16
- build_artifacts
13
+ /build
14
+ /build_release
15
+ /build_debug
16
+ /build_relwithdebinfo
17
+ /build_artifacts
17
18
_deps
18
19
CMakeCache.txt
19
20
CMakeFiles
Original file line number Diff line number Diff line change @@ -46,6 +46,14 @@ cmake --build build_release --config Release
46
46
build_release/test_cpp
47
47
```
48
48
49
+ For development purposes, you may want to include symbols information in the build:
50
+
51
+ ``` sh
52
+ cmake -DUSEARCH_BUILD_TEST_CPP=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo -B build_relwithdebinfo
53
+ cmake --build build_relwithdebinfo --config RelWithDebInfo
54
+ build_relwithdebinfo/test_cpp
55
+ ```
56
+
49
57
The CMakeLists.txt file has a number of options you can pass:
50
58
51
59
- What to build:
You can’t perform that action at this time.
0 commit comments