diff options
| author | Pavel Janík <[email protected]> | 2014-12-18 13:34:16 +0100 |
|---|---|---|
| committer | Pavel Janík <[email protected]> | 2014-12-18 13:34:16 +0100 |
| commit | 469d564951a47f704a08e8265aa165e2d0fc78ca (patch) | |
| tree | 015486c3e3d366b076347d9c986f411cf76bceba /src | |
| parent | Merge pull request #5488 (diff) | |
| download | discoin-469d564951a47f704a08e8265aa165e2d0fc78ca.tar.xz discoin-469d564951a47f704a08e8265aa165e2d0fc78ca.zip | |
Build winshutdownmonitor.cpp on Windows only.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.qt.include | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile.qt.include b/src/Makefile.qt.include index 25d76c146..c0cc8f34e 100644 --- a/src/Makefile.qt.include +++ b/src/Makefile.qt.include @@ -279,8 +279,11 @@ BITCOIN_QT_CPP = \ qt/rpcconsole.cpp \ qt/splashscreen.cpp \ qt/trafficgraphwidget.cpp \ - qt/utilitydialog.cpp \ - qt/winshutdownmonitor.cpp + qt/utilitydialog.cpp + +if TARGET_WINDOWS +BITCOIN_QT_CPP += qt/winshutdownmonitor.cpp +endif if ENABLE_WALLET BITCOIN_QT_CPP += \ |