Re: [Discuss-gnuradio] pybombs path issue with OOT modules

2015-09-17 Thread Jason Matusiak
> So basically go back to your OOT module, delete your build directory (just to > be safe) then start over like this: > mkdir build && cd build > cmake -DCMAKE_INSTALL_PREFIX=/home/jason/target .. > make > make install Bingo, you were right on target. I guess I figured that when sourcing with th

Re: [Discuss-gnuradio] pybombs path issue with OOT modules

2015-09-17 Thread Jawad Seddar
Hey Jason, When you create a new OOT module for a pybombs install, you don't need to create the folder in the pybombs/src directory. Then when you do your cmake in the OOT module, you need to pass along the path to your target using the flag -DCMAKE_INSTALL_PREFIX=/path/to/target . And if your ta

[Discuss-gnuradio] pybombs path issue with OOT modules

2015-09-17 Thread Jason Matusiak
Got a little conundrum here I have pybombs setup and working fine for my RFNoC development. I then decided that I wanted to make a new OOT module, so I did gr_modtool newmod myOOTmodule in ~/pybombs/src. Made my tweaks to the XML file inside GRC and tried to mkdir build && cd build && make &&