Skip to content

Commit db2c57a

Browse files
committed
Merge bitcoin-core/gui#858: qt: doc: adapt outdated binary paths to CMake changes
7ebc458 qt: doc: adapt outdated binary paths to CMake changes (Sebastian Falbesoner) Pull request description: Adapt the qt-related instances of outdated binary paths to `./build/bin/...` (see [bitcoin#30454](bitcoin#30454) and the more recently merged [bitcoin#31161](bitcoin#31161)). According to `$ git grep src/qt.*bitcoin` there should be no more left to address. ACKs for top commit: maflcko: lgtm ACK 7ebc458 Sjors: utACK 7ebc458 fanquake: ACK 7ebc458 hebasto: ACK 7ebc458. Tree-SHA512: 8cd6579fdf209ec4ee3c4c9cfb94cb11d5d5115068d31613d356ca1303214dc4461580535c2d3f2773f373a4271e9a82df25596d8369eef8235822f7030d88bd
2 parents a799415 + 7ebc458 commit db2c57a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/qt/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,5 @@ sudo apt-get install qtcreator
120120
- Under `Debuggers`: select `"GDB"` as debugger
121121

122122
8. While in the `Projects` tab, ensure that you have the `bitcoin-qt` executable specified under `Run`
123-
- If the executable is not specified: click `"Choose..."`, navigate to `src/qt`, and select `bitcoin-qt`
123+
- If the executable is not specified: click `"Choose..."`, navigate to `build/bin`, and select `bitcoin-qt`
124124
9. You're all set! Start developing, building, and debugging the Bitcoin Core GUI

src/qt/test/wallettests.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,9 @@ struct MiniGUI {
268268
//
269269
// This also requires overriding the default minimal Qt platform:
270270
//
271-
// QT_QPA_PLATFORM=xcb src/qt/test/test_bitcoin-qt # Linux
272-
// QT_QPA_PLATFORM=windows src/qt/test/test_bitcoin-qt # Windows
273-
// QT_QPA_PLATFORM=cocoa src/qt/test/test_bitcoin-qt # macOS
271+
// QT_QPA_PLATFORM=xcb build/bin/test_bitcoin-qt # Linux
272+
// QT_QPA_PLATFORM=windows build/bin/test_bitcoin-qt # Windows
273+
// QT_QPA_PLATFORM=cocoa build/bin/test_bitcoin-qt # macOS
274274
void TestGUI(interfaces::Node& node, const std::shared_ptr<CWallet>& wallet)
275275
{
276276
// Create widgets for sending coins and listing transactions.

0 commit comments

Comments
 (0)