Integrate CybeDefend with your C/C++ toolchain and lock dependencies, typically via conan.lock.
conan.lock
.conan profile detect
(if needed)conan lock create . --lockfile-out=conan.lock
to produce the lockfile.conan install
to install dependencies using your lockfile.conan.lock
so everyone uses the exact same library versions..deps/
or build artifacts to .gitignore
so that only the lockfile and source are tracked.File Examples |
---|
conan.lock , CMakeLists.txt , .cpp , .h , conanfile.py , conanfile.txt |