mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
22 lines
407 B
Plaintext
22 lines
407 B
Plaintext
Building:
|
|
=========
|
|
mkdir build
|
|
cd build
|
|
cmake .. [CMAKE PARAMETERS]
|
|
make [-jX]
|
|
|
|
Common cmake parameters:
|
|
========================
|
|
-DCMAKE_INSTALL_PREFIX=/usr/local
|
|
-DCMAKE_VERBOSE_MAKEFILE=ON
|
|
-DCMAKE_BUILD_TYPE=<RelWithDebInfo/Debug/Release>
|
|
-DWITH_GUI_TESTS=ON
|
|
|
|
Installing:
|
|
===========
|
|
make install [DESTDIR=X]
|
|
|
|
Run tests:
|
|
==========
|
|
make test [CTEST_OUTPUT_ON_FAILURE=1] [ARGS+=-jX] [ARGS+="-E testgui"]
|