We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8428b7f commit c453582Copy full SHA for c453582
.gitignore
@@ -10,10 +10,11 @@ bin
10
.cache
11
12
# C++ builds
13
-build
14
-build_release
15
-build_debug
16
-build_artifacts
+/build
+/build_release
+/build_debug
+/build_relwithdebinfo
17
+/build_artifacts
18
_deps
19
CMakeCache.txt
20
CMakeFiles
CONTRIBUTING.md
@@ -46,6 +46,14 @@ cmake --build build_release --config Release
46
build_release/test_cpp
47
```
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
57
The CMakeLists.txt file has a number of options you can pass:
58
59
- What to build:
0 commit comments