mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-27 00:09:53 -05:00
22 lines
438 B
Bash
22 lines
438 B
Bash
#!/usr/bin/bash
|
|
|
|
cd /c/projects/keepassxc
|
|
mkdir build && cd build
|
|
|
|
if [ "${configuration}" = "Debug" ]; then
|
|
cmake -G "MSYS Makefiles" \
|
|
-DCMAKE_BUILD_TYPE=${configuration} \
|
|
-DWITH_XC_ALL=ON \
|
|
-DWITH_TESTS=ON \
|
|
-DWITH_GUI_TESTS=ON \
|
|
-DWITH_ASAN=ON \
|
|
..
|
|
else
|
|
cmake -G "MSYS Makefiles" \
|
|
-DCMAKE_BUILD_TYPE=${configuration} \
|
|
-DWITH_XC_ALL=ON \
|
|
-DWITH_TESTS=ON \
|
|
-DWITH_GUI_TESTS=ON \
|
|
..
|
|
fi
|