diff options
author | kevkevinpal <oapallikunnel@gmail.com> | 2024-09-11 19:58:55 -0400 |
---|---|---|
committer | kevkevinpal <oapallikunnel@gmail.com> | 2024-09-18 11:04:52 -0400 |
commit | a9964c04447745435747d9cc557165c43902783b (patch) | |
tree | c6a2f92259378c84bfa255a8212cb327d60e9feb /src/qt | |
parent | 0c4ff18ee9ec91b424ad26d2643e42566aa45e40 (diff) |
doc: Updating docs from autotools to cmake
replaced --enable-debug with -DCMAKE_BUILD_TYPE=Debug in developer-notes
replaced --enable-multiprocess with -DWITH_MULTIPROCESS=ON
replaced --disable-zmq with -DWITH_ZMQ=OFF
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/README.md b/src/qt/README.md index 1c6f963ccf..3ecdd0888e 100644 --- a/src/qt/README.md +++ b/src/qt/README.md @@ -99,7 +99,7 @@ sudo apt-get install qtcreator #### Setup Qt Creator 1. Make sure you've installed all dependencies specified in your systems build instructions -2. Follow the compile instructions for your system, run `./configure` with the `--enable-debug` flag +2. Follow the compile instructions for your system, adding the `-DCMAKE_BUILD_TYPE=Debug` build flag 3. Start Qt Creator. At the start page, do: `New` -> `Import Project` -> `Import Existing Project` 4. Enter `bitcoin-qt` as the Project Name and enter the absolute path to `src/qt` as Location 5. Check over the file selection, you may need to select the `forms` directory (necessary if you intend to edit *.ui files) |