Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions debian-testnet/control
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ Build-Depends:
libboost-date-time-dev,
libboost-test-dev,
libminiupnpc-dev,
# Multiprocess (IPC) build: the code generator and the runtime. The vendored
# libmultiprocess subtree requires Cap'n Proto 0.9 or newer and fails configure
# below that, so the floor is expressed here rather than discovered mid-build.
capnproto (>= 0.9),
libcapnp-dev (>= 0.9),
libqrencode-dev,
libzip-dev,
libcurl4-openssl-dev,
Expand Down Expand Up @@ -70,10 +75,17 @@ Depends:
qt6-svg-plugins | libqt6svg6
Recommends:
bash-completion
Suggests:
gridcointestnetd
Description: Gridcoin Research testnet Qt GUI
Gridcoin is a proof-of-stake cryptocurrency that rewards BOINC
(Berkeley Open Infrastructure for Network Computing) participants
for contributing computational power to scientific research.
.
This package provides the Qt-based graphical user interface for the
testnet (gridcointestnet).
.
The GUI runs the node in-process by default. To use the multiprocess
(GUI/node split) mode with -multiprocess, install gridcointestnetd as well:
in that mode the GUI attaches over IPC to a daemon that is already running,
and does not start one itself.
1 change: 1 addition & 0 deletions debian-testnet/rules
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ override_dh_auto_configure:
-DENABLE_TESTS=ON \
-DENABLE_QRENCODE=ON \
-DENABLE_UPNP=ON \
-DENABLE_MULTIPROCESS=ON \
-DUSE_DBUS=ON \
-DENABLE_PIE=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
Expand Down
12 changes: 12 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ Build-Depends:
libboost-date-time-dev,
libboost-test-dev,
libminiupnpc-dev,
# Multiprocess (IPC) build: the code generator and the runtime. The vendored
# libmultiprocess subtree requires Cap'n Proto 0.9 or newer and fails configure
# below that, so the floor is expressed here rather than discovered mid-build.
capnproto (>= 0.9),
libcapnp-dev (>= 0.9),
libqrencode-dev,
libzip-dev,
libcurl4-openssl-dev,
Expand Down Expand Up @@ -69,10 +74,17 @@ Depends:
qt6-svg-plugins | libqt6svg6
Recommends:
bash-completion
Suggests:
gridcoinresearchd
Description: Gridcoin Research Qt GUI
Gridcoin is a proof-of-stake cryptocurrency that rewards BOINC
(Berkeley Open Infrastructure for Network Computing) participants
for contributing computational power to scientific research.
.
This package provides the Qt-based graphical user interface
(gridcoinresearch).
.
The GUI runs the node in-process by default. To use the multiprocess
(GUI/node split) mode with -multiprocess, install gridcoinresearchd as well:
in that mode the GUI attaches over IPC to a daemon that is already running,
and does not start one itself.
1 change: 1 addition & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ override_dh_auto_configure:
-DENABLE_TESTS=ON \
-DENABLE_QRENCODE=ON \
-DENABLE_UPNP=ON \
-DENABLE_MULTIPROCESS=ON \
-DUSE_DBUS=ON \
-DENABLE_PIE=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
Expand Down
Loading