-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
trying to make OOT Block but missing doxygen and CPPUNIT #94
Comments
You might have better luck copying how the build does it: https://github.com/pothosware/PothosSDR/blob/master/BuildGNURadio.cmake#L76 Because it is kind of just arbitrary magic: BOOSTSo every cmake project gets the following boost flags:
And how those variables are set CPPUnit
And cpp unit is definitely installed for development (unlike boost) |
Yey, thanks that did the trick now this thing finaly configures (pain follows 😢) Let me tell you a story 😄 So I decided to add this myself, how hard could it be..... well my instruction speak for itself 😄 now the first part (configure part) is done Not sure how you are building this but since configure didn't generate any MakeFile I couldn't use make so I opened generated solution in Visual Studio 2019 and if only it would give me some normal errors 😢 but it did build 8 of them fine still haven't find any files to copy over to gnuradio dir |
I managed to solve linker errors for SDL (copying it into PothosSDR/include/SDL and PothosSDR/lib did the trick) I guess theese folders were in path or something but fun didn't last for long 😢 If I am going through so much trouble I might as well upgrade to 3.9 along the way and add stuff I am missing there so lets try to ugrapde to 3.9 and add gr-rds and gr-nrsc5 to it and see where we come 😄 |
So close, yet so far away, I've got everything built exept SoapySDR complains for something (its looking python in its own source directory for some reason ....) (not sure what to put in that directory because I already have python3.9 in C:\Python3.9) and all the variables
that he expects points to python (exept PYTHON3_INSTALL_DIR, which is empty... not sure where its supposed to point to?) as for GNURadio its still doesn't start, it complains that it cannot import GRPython but all the paths point to it just like if using your installer (I even set Aha, I think I found the module not importing error in GNURadio Well after using this: https://lucasg.github.io/Dependencies/ to figure out that MPIR.dll is missing (not sure why because it should be there) GROsmoSDR still doesn't build, it requires some grBindTool which it cannot find |
Hi there, some update GROsmoSDR: PothosPlotters: SoapySDRPython3: I did find its included from here: https://github.com/pothosware/SoapySDR/blob/9cbaa3cfb4ad6231a743319d71bda3634885a428/swig/python3/CMakeLists.txt#L65 but removing that include causes even more pain as for GNURadio its still doesn't run 😢 because So if you maybe have any idea what is wrong (at least Pothos stuff, GROsmoSDR is probably broken somehow)? Thanks |
Hello there, today I was trying to build an OOT module but figured out that pothos does not include (or I couldn't find it)
CPPUnit and DoxyGen
after installing Boost dev libraries from here: https://deac-ams.dl.sourceforge.net/project/boost/boost-binaries/1.67.0/boost_1_67_0-msvc-14.0-64.exe
added theese variables
(nothing worked exept theese, I tried first like this: cmake ../ -DBOOST_ROOT="C:\Program Files\PothosSDR\boost\boost" -DBOOST_LIBRARYDIR="C:\Program Files\PothosSDR\boost\lib64-msvc-14.0"
but it didn't work, only setting them as variables worked
so now I am only missing CPPUNIT and doxygen, I hope someone has them precompiled (I couldn't find them in pothos install dir like most of the other libraries) because I am trying to avoid building them from source if absolutely not necessary
Thanks for Anwsering and Best Regards
The text was updated successfully, but these errors were encountered: