Hi,
I have known that the .cc example in gnuradio would be compiled when
running “make” in the build directory.But how can I compile my own .cc
file through g++ command line?
Thanks.
On Tue, May 14, 2013 at 8:17 PM, Gong Z. [email protected] wrote:
I have known that the .cc example in gnuradio would be compiled when
running “make” in the build directory.But how can I compile my own .cc
file through g++ command line?
This is better done in a Makefile of your own design, but a quick
command-line for g++ is:
$ g++ -o dial_tone dial_tone.cc pkg-config --cflags gnuradio-core
pkg-config --libs gnuradio-core pkg-config --libs gnuradio-audio