diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-11-19 10:52:57 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-11-19 10:53:32 +0100 |
commit | bf217e3adc5d8c01bc9b01bac13f14c47332ddac (patch) | |
tree | de0b1e5e8c0870fa30956d83240a6aaea14d85f6 /doc/build-osx.md | |
parent | 5716808ca78143196ec6db111e72a36aff4dd170 (diff) | |
parent | 6c8c704bb43e6bb78a1162468a9075da366e0007 (diff) |
Merge pull request #5279
6c8c704 [docs] Add mini-"howto" using Qt Creator (osx) (Jonas Schnelli)
Diffstat (limited to 'doc/build-osx.md')
-rw-r--r-- | doc/build-osx.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/build-osx.md b/doc/build-osx.md index c79c1317b0..c41820f2b1 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -84,6 +84,22 @@ After exiting, you'll get a warning that the install is keg-only, which means it make install +Use Qt Creator as IDE +------------------------ +You can use Qt Creator as IDE, for debugging and for manipulating forms, etc. +Download Qt Creator from http://www.qt.io/download/. Download the "community edition" and only install Qt Creator (uncheck the rest during the installation process). + +1. Make sure you installed everything through homebrew mentioned above +2. Do a proper ./configure --with-gui=qt5 --enable-debug +3. In Qt Creator do "New Project" -> Import Project -> Import Existing Project +4. Enter "bitcoin-qt" as project name, enter src/qt as location +5. Leave the file selection as it is +6. Confirm the "summary page" +7. In the "Projects" tab select "Manage Kits..." +8. Select the default "Desktop" kit and select "Clang (x86 64bit in /usr/bin)" as compiler +9. Select LLDB as debugger (you might need to set the path to your installtion) +10. Start debugging with Qt Creator + Creating a release build ------------------------ You can ignore this section if you are building `bitcoind` for your own use. |