1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-23 10:13:41 +02:00

CMake: rename BUILD_COMPONENT_* options to COMPONENT_*

This commit is contained in:
Henrik Hautakoski 2020-04-24 12:01:24 +02:00
parent 56c1886880
commit 2d1c0d0785
4 changed files with 20 additions and 20 deletions

View file

@ -102,13 +102,13 @@ C:\repo\build> cmake --build . --config Release
These compile options are available:
| Cmake | build.sh | Description |
|---------------------------- | ----------------- | ----------------------------------------- |
| -DBUILD_COMPONENT_CLI=`OFF` | --no-cli | Do not build cli program |
| -DBUILD_COMPONENT_GUI=`ON` | --gui | Build gui program (Qt5) |
| -DUSE_THREADS=`OFF` | --disable-threads | Disable thread support |
| -DCMAKE_BUILD_TYPE=`value` | -t `value` | Type of build |
| -DFORCE_ANSI=`ON` | --force-ansi | Force ANSI console colors even on windows |
| Cmake | build.sh | Description |
|--------------------------- | ----------------- | ----------------------------------------- |
| -DCOMPONENT_CLI=`OFF` | --no-cli | Do not build cli program |
| -DCOMPONENT_GUI=`ON` | --gui | Build gui program (Qt5) |
| -DUSE_THREADS=`OFF` | --disable-threads | Disable thread support |
| -DCMAKE_BUILD_TYPE=`value` | -t `value` | Type of build |
| -DFORCE_ANSI=`ON` | --force-ansi | Force ANSI console colors even on windows |
For more details about options run `./build.sh -l` or `mkdir build && cmake build -LA`