Re: [Discuss-gnuradio] gr-display-master install (was Re: Writing text to a QT GUI Window)

2015-04-20 Thread Michael Dickens
Execute "gnuradio-config-info --prefix" to see the PREFIX into which GNU Radio was installed. The default PREFIX is /usr/local, yes. - MLD On Mon, Apr 20, 2015, at 11:54 AM, Murphy, John wrote: > Saw the item below on the archive page (I get the digest). > And, yes, /usr/local is correct, /usr/loc

Re: [Discuss-gnuradio] gr-display-master install (was Re: Writing text to a QT GUI Window)

2015-04-20 Thread Murphy, John
Saw the item below on the archive page (I get the digest). And, yes, /usr/local is correct, /usr/local/bin builds but gets runtime errors. So many thanks MLD. Now, the next time I get stuck doing this on some random system in the future, how do I know what that directory location is for the gnuradi

Re: [Discuss-gnuradio] gr-display-master install (was Re: Writing text to a QT GUI Window)

2015-04-20 Thread Volker Schroer
If you install gnuradio without a CMAKE_INSTALL_PREFIX it goes to /usr/local containing many subdirectories. But in some use cases it may be necessary to install into a different directory. On your system the CMAKE_INSTALL_PREFIX is /usr/local Am 20.04.2015 um 16:45 schrieb Murphy, John: In th

Re: [Discuss-gnuradio] gr-display-master install (was Re: Writing text to a QT GUI Window)

2015-04-20 Thread Murphy, John
Nevermind. Asked around the linux'ers here and it is just the output of "which gnuradio-companion". On mine that was /usr/local/bin. Thanks. John PS - this Text Sink takes a stream of chars as an input. So I take it the rate at which a block of mine delivers the chars to the scheduler to connect t

Re: [Discuss-gnuradio] gr-display-master install (was Re: Writing text to a QT GUI Window)

2015-04-20 Thread Michael Dickens
Hi John - is the top-evel PREFIX into which GR is installed. In your case, this would be /usr/local, so you'd use: {{{ cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. }}} Hope this helps. - MLD On Mon, Apr 20, 2015, at 10:45 AM, Murphy, John wrote: > In the gr-display-master README file under "2. Inst

[Discuss-gnuradio] gr-display-master install (was Re: Writing text to a QT GUI Window)

2015-04-20 Thread Murphy, John
In the gr-display-master README file under "2. Installation" when it states... $cmake -DCMAKE_INSTALL_PREFIX= ../ What is meant by ""? gnuradio gets installed across many directories, to which does this refer? Sorry for the noob question, I never had to use -DCMAKE_INSTALL_PREFIX before just usin