Skip to content
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

dependecies updated #2

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

patel999jay
Copy link

standard libraries and cmath libraries are included to use sqrt and abs function. added by Jay

standard libraries and cmath libraries are included to use sqrt and abs function. added by Jay
swig dependency ported for newer GNURadio 3.8 compatibility

I know what's causing the problem. I use deprecated ${GNURADIO_RUNTIME_INCLUDE_DIRS} macro. After replacing
```bash
foreach(incdir ${GNURADIO_RUNTIME_INCLUDE_DIRS})
    list(APPEND GR_SWIG_INCLUDE_DIRS ${incdir}/gnuradio/swig)
endforeach(incdir)
```
with 

```bash
foreach(incdir ${GNURADIO_RUNTIME_INCLUDE_DIRS})
    #list(APPEND GR_SWIG_INCLUDE_DIRS ${incdir}/gnuradio/swig)
    list(APPEND GR_SWIG_INCLUDE_DIRS  "/usr/local/include/gnuradio/swig")
    list(APPEND GR_SWIG_INCLUDE_DIRS "/usr/include/gnuradio/swig")
endforeach(incdir)
```
everything works. However, this is a temporary solution. And while building using cmake put a flag `-DGNURADIO_ALL_INCLUDE_DIRS=/usr/include/gnuradio/swig` with cmake so it will definitely find the swig.
updated cmake flags.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant