aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.qt.include
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #4673Wladimir J. van der Laan2014-08-261-0/+3
|\ | | | | | | | | 1c5f0af [Qt] Add column Watch-only to transactions list (Cozz Lovan) 939ed97 Add boolean HaveWatchonly and signal NotifyWatchonlyChanged (Cozz Lovan)
| * [Qt] Add column Watch-only to transactions listCozz Lovan2014-08-111-0/+3
| |
* | build: add option for reducing exports (v2)Cory Fields2014-08-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | This was committed previously as 4975ae172 and reverted, because the flags were applied even if the checks didn't pass. This is the same commit, fixed up to actually disable the functionality when necessary. Enabled automatically if boost >= 1.49. See: https://svn.boost.org/trac/boost/ticket/2309 Also, check for a default visibility attribute, so that we can mark future api functions correctly.
* | Revert "build: add option for reducing exports"Wladimir J. van der Laan2014-08-181-1/+1
| | | | | | | | | | | | | | | | | | Revert #4663 for now. It still breaks the pulltester. This reverts commit 4975ae1722cd8af63eda2f02ef64a98091b6fb58. Conflicts: configure.ac
* | build: add option for reducing exportsCory Fields2014-08-151-1/+1
| | | | | | | | | | | | | | | | Enabled automatically if boost >= 1.49. See: https://svn.boost.org/trac/boost/ticket/2309 Also, check for a default visibility attribute, so that we can mark future api functions correctly.
* | build: fix automake warnings about the use of INCLUDESCory Fields2014-08-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | While we're at it, reduce the use of LIBS as well. This makes dependencies explicit. Fixes building with (the not-yet-merged) libsecp256k1 as well. Github-Pull: #4689 Rebased-By: Wladimir J. van der laan <[email protected]> Rebased-From: 909b347 c0e5dda
* | qt: better looking trayiconntrgn2014-08-121-2/+0
|/ | | | | Github-Pull: #4678 Rebased-By: Wladimir J. van der Laan <[email protected]>
* Add "bitcoin-tx" command line utility and supporting modules.Jeff Garzik2014-07-291-1/+1
| | | | | | | | | | | | | This is a simple utility that provides command line manipulation of a hex-encoded TX. The utility takes a hex string on the command line as input, performs zero or more mutations, and outputs a hex string to standard output. This utility is also an intentional exercise of the "bitcoin library" concept. It is designed to require minimal libraries, and works entirely without need for any RPC or P2P communication. See "bitcoin-tx --help" for command and options summary.
* qt: Use fixed-point arithmetic in amount spinboxWladimir J. van der Laan2014-07-231-0/+1
| | | | | | | | | Fixes various issues and cleans up code - Fixes issue #4500: Amount widget +/- has floating point rounding artifacts - Amount box can now be emptied again, without clearing to 0 Also aligns the amount to the right, as in other places.
* build: re-add AM_LDFLAGS where it's overriddenCory Fields2014-07-081-1/+1
| | | | using _LDFLAGS replaces AM_LDFLAGS rather than adding to it.
* Merge pull request #4466Wladimir J. van der Laan2014-07-071-1/+4
|\ | | | | | | ad87bc4 [Qt] Replace status bar unit icon with actual images (Cozz Lovan)
| * [Qt] Replace status bar unit icon with actual imagesCozz Lovan2014-07-051-1/+4
| |
* | qt: Pick translation messages only from necessary filesWladimir J. van der Laan2014-07-071-2/+2
|/ | | | | | Utility libraries (common, util) as well as extra tools shouldn't be parsed for translation messages, only the server and wallet part qualify here.
* secp256k1: Add build-side changes for libsecp256k1Cory Fields2014-07-011-0/+3
| | | | | | Note: This is added to our existing automake targets rather than as a libtool-style lib. The switch to libtool-style targets can come later if it proves to not add any complications.
* Remove unnecessary dependencies for bitcoin-cliWladimir J. van der Laan2014-06-251-2/+2
| | | | | | | | | This commit removes all the unnecessary dependencies (key, core, netbase, sync, ...) from bitcoin-cli. To do this it shards the chain parameters into BaseParams, which contains just the RPC port and data directory (as used by utils and bitcoin-cli) and Params, with the rest.
* crypto: create a separate lib for crypto functionsCory Fields2014-06-211-1/+1
| | | | | This lib has no dependencies on other bitcoin functionality. Attempting to use bitcoin headers will result in a failure to compile.
* qt: Unify AboutDialog and HelpMessageDialogWladimir J. van der Laan2014-06-121-1/+0
| | | | | They share so much code and functionality that they may as well be one class.
* build: qt: split locale resources. Fixes non-deterministic distcheckCory Fields2014-06-101-5/+13
| | | | | | | | | The rcc tool is quirky and only honors files in the same directory as the qrc. When doing an out-of-tree build (as 'make distcheck' does), the generated translation files end up in a different path, so rcc can't find them. Split them up so that rcc is run twice: once for static source files and once for generated files.
* build: quit abusing AM_CPPFLAGSCory Fields2014-06-051-9/+9
| | | | | | | | Now that the build is non-recursive, adding to AM_CPPFLAGS means adding to _all_ cppflags. Logical groups of includes have been added instead, and are used individually by various targets.
* build: avoid the use of top_ and abs_ dir pathsCory Fields2014-06-051-5/+5
| | | | Using them has the side effect of confusing the dependency-tracking logic.
* build: Tidy up file generation outputCory Fields2014-06-051-19/+15
| | | | | | | - Some file generation was still noisy, silence it. - AM_V_GEN is used rather than @ so that 'make V=1' works as intended - Cut down on file copies and moves when using sed, use pipes instead - Avoid the use of top_ and abs_ dirs where possible
* build: nuke Makefile.include from orbitCory Fields2014-06-051-0/+21
| | | | | Rules and targets no longer need to be shared between subdirectories, so this is no longer needed.
* build: Switch to non-recursive makeCory Fields2014-06-051-0/+387
Build logic moves from individual Makefile.am's to include files, which the main src/Makefile.am includes. This avoids having to manage a gigantic single Makefile. TODO: Move the rules from the old Makefile.include to where they actually belong and nuke the old file.