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

Commits on Jun 23, 2020

  1. dependecies updated

    standard libraries and cmath libraries are included to use sqrt and abs function. added by Jay
    patel999jay authored Jun 23, 2020
    Configuration menu
    Copy the full SHA
    3e56c9e View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2020

  1. swig dependency ported for newer GNURadio

    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.
    patel999jay authored Jun 26, 2020
    Configuration menu
    Copy the full SHA
    2871f75 View commit details
    Browse the repository at this point in the history
  2. Update Readme

    updated cmake flags.
    patel999jay authored Jun 26, 2020
    Configuration menu
    Copy the full SHA
    2f99aea View commit details
    Browse the repository at this point in the history
  3. Update README.md

    patel999jay authored Jun 26, 2020
    Configuration menu
    Copy the full SHA
    65fb003 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2020

  1. Update README.md

    patel999jay authored Jun 27, 2020
    Configuration menu
    Copy the full SHA
    cf79e0e View commit details
    Browse the repository at this point in the history
  2. Update README.md

    patel999jay authored Jun 27, 2020
    Configuration menu
    Copy the full SHA
    a87bde9 View commit details
    Browse the repository at this point in the history