Changeset View
Changeset View
Standalone View
Standalone View
doc/productivity.md
| Show All 39 Lines | |||||
| Note that the ramdisk does not persist between reboots, so neither will your test datadirs. | Note that the ramdisk does not persist between reboots, so neither will your test datadirs. | ||||
| ### Disable features with `cmake` | ### Disable features with `cmake` | ||||
| You can disable features to save on compilation time. A few common flags: | You can disable features to save on compilation time. A few common flags: | ||||
| ```sh | ```sh | ||||
| -DENABLE_UPNP=OFF | -DENABLE_UPNP=OFF | ||||
| -DENABLE_NATPMP=OFF | |||||
| -DBUILD_WALLET=OFF | -DBUILD_WALLET=OFF | ||||
| -DBUILD_QT=OFF | -DBUILD_QT=OFF | ||||
| ``` | ``` | ||||
| See [Options passed to cmake](dependencies.md#options-passed-to-cmake) | See [Options passed to cmake](dependencies.md#options-passed-to-cmake) | ||||
| ### Multiple working directories with `git worktrees` | ### Multiple working directories with `git worktrees` | ||||
| ▲ Show 20 Lines • Show All 110 Lines • Show Last 20 Lines | |||||