summaryrefslogtreecommitdiff
path: root/gr-audio/examples/c++
Commit message (Collapse)AuthorAgeFilesLines
* Update license header to SPDX formatdevnulling2020-01-272-26/+2
|
* clang-format: Ordering all the includesMarcus Müller2019-08-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | clang-format: ordering includes in gnuradio-runtime clang-format: ordering includes in gr-filter clang-format: ordering includes in gr-fft clang-format: ordering includes in gr-audio clang-format: ordering includes in gr-analog clang-format: ordering includes in gr-fec clang-format: ordering includes in gr-wavelet clang-format: ordering includes in gr-zeromq clang-format: ordering includes in gr-vocoder clang-format: ordering includes in gr-video-sdl clang-format: ordering includes in gr-trellis clang-format: ordering includes in gr-blocks clang-format: ordering includes in gr-digital clang-format: ordering includes in gr-uhd clang-format: ordering includes in gr-dtv clang-format: ordering includes in gr-channels clang-format: ordering includes in gr-qtgui clang_format.py: re-enable include reordering
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-26/+28
|
* cmake: Update to modern CMake usageAndrej Rode2019-03-041-8/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This includes using target based setting of includes and link libraries. This will transitively add the includes and linking flags to dependent targets. This is still a work in progress since only the dynamic libraries have been touched and not all of include_directories directives are gone yet. cmake: remove GR_INCLUDE_SUBDIRECTORY macro Previously this macro was used to inject subdirectories in the current CMake namespace. This is generally undesired and pollutes the current context. previously GNU Radio CMake had a non-default option ENABLE_STATIC_LIBS to build both, shared libraries and static libraries. This seems to be a construction taken over from autotools and serves no purpuose in CMake and complicates the library building. cmake: remove GR_LIBTOOL and la generation support This looks like it was primarily used to support projects using autotools, but comments state that the generated .la files aren't compatible with autotools anyway. cmake: Bump required CMake version to 3.8 UseSWIG cmake uses syntax which requires at least CMake 3.8 and is non-trivial to change
* analog: replace gengen with C++ templatesAndrej Rode2018-08-251-1/+1
|
* cmake: nuke cpack from existenceJohnathan Corgan2016-08-031-1/+0
| | | | | | CPack is not used, unmaintaned, and broken. This does not eliminate any MSVC build functionality.
* Removing trailing/extra whitespaces before release.Tom Rondeau2014-07-071-1/+1
| | | | We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
* audio: moved include dir to gnuradio/audioJohnathan Corgan2013-04-291-1/+1
|
* analog: update include dir to gnuradio/analogJohnathan Corgan2013-04-291-1/+1
|
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-292-4/+5
|
* gruel: moved gruel into subdirs of gnuradio-runtime.Tom Rondeau2013-04-011-1/+0
| | | | PMTs are handled slightly different and are installed into their own module and include dir.
* runtime: migrate remaining gnuradio-core contents into gnuradio-runtimeJohnathan Corgan2013-03-261-1/+1
|
* analog: wip: oss and jack converted and compiling.Tom Rondeau2013-02-111-1/+1
| | | | C++ dial_tone example working.
* audio: wip: moving audio to 3.7 style. Headers renamed and moved.Tom Rondeau2013-02-111-2/+2
|
* Merge master/fix_build_dir_order into next, then fix conflicts and redo come ↵Michael L Dickens2013-01-041-3/+8
|\ | | | | | | of the INCLUDE_DIRS order
| * Tweak INCLUDE dirs such that INCLUDE_DIRECTORIES and LINK_DIRECTORIES are ↵Michael L Dickens2013-01-011-2/+6
| | | | | | | | ordered as: internal build and source for this component, other components (internal build and source, or already installed), non-project non-system dependencies (e.g., Qt, Boost, Python), system dependencies (e.g., CoreAudio).
* | analog: Removing reference to gr.sig_source_X and gr.noise_source_X where ↵Tom Rondeau2012-11-062-4/+7
|/ | | | | | | | possible. Passing make and make test. Examples and apps need testing. gr-filter relies on sig_source and noise_source, so can't remove them from core.
* Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵Tom Rondeau2012-04-132-8/+8
| | | | | | this in the future. The sed script was provided by Moritz Fischer.
* examples: Reworked locations and installation of examples.Tom Rondeau2012-04-031-0/+6
| | | | All python and GRC examples directly associated with a top-level component are now in that examples directory. Examples are split into c++, python, and grc dirs but are all installed into $prefix/share/gnuradio/examples/<component>.
* Removed autotools, gr-waveform, some cleanupJohnathan Corgan2011-12-082-43/+0
| | | | Nick Foster owes Nick Corgan a six-pack of beer!
* Merge branch 'next' of http://gnuradio.org/git/gnuradio into nextJosh Blum2011-10-171-1/+3
|\
| * build: fixed a bug with missing boost filesystem lib.Tom Rondeau2011-10-151-1/+3
| |
* | gr: the CMakeLists.txt took a chill pillJosh Blum2011-10-081-4/+4
| |
* | gr: squashed cmakelists.txt into one commitJosh Blum2011-07-201-0/+23
|/
* gnuradio-examples, gr-audio: moved audio Python and C++ examples into gr-audioJohnathan Corgan2011-07-043-0/+119
This begins a transition of examples from a separate gnuradio-examples component into an examples directory with the component they go with. In this commit: gnuradio-examples/c++/audio/ => gr-audio/examples/c++ gnuradio-examples/python/audio => gr-audio/examples/python The system installation directory remains $PREFIX/share/gnuradio/examples/audio