mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
6 lines
258 B
Plaintext
Executable File
6 lines
258 B
Plaintext
Executable File
# Script which sets up the CMake build for Debug mode.
|
|
# After running, chdir to the build subdir ane run "make"
|
|
mkdir build
|
|
cd build && cmake .. -DCMAKE_BUILD_TYPE=Debug -DLINT=ON \
|
|
-DCMAKE_CXX_FLAGS="-O0 -g -fsanitize=address -fno-omit-frame-pointer" $@
|