summaryrefslogtreecommitdiff
path: root/gr-atsc/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'maint'Tom Rondeau2012-12-121-2/+0
|\
| * build: removing core_swig from GR_SWIG_TARGET_DEPS. Seems to have been the ↵Tom Rondeau2012-12-121-2/+0
| | | | | | | | cause of the parallel build woes.
* | build: cleaned up some warnings.Tom Rondeau2012-12-031-1/+1
|/
* gr: same change for common PYTHON test pathsJosh Blum2012-11-141-6/+6
| | | | | | | Conflicts: gr-analog/python/CMakeLists.txt gr-blocks/python/CMakeLists.txt
* gr: set a common GR_TEST_TARGET_DEPS for all module unit testsJosh Blum2012-11-142-2/+2
| | | | | | | | | | | | | | | | Each unit test shares common dependencies, but we have been neglecting to set these. In this changeset, we set one top level GR_TEST_TARGET_DEPS, and simply append module-specific dependencies for each test. This also helps to fix QA tests on windows which were missing the dependencies list. Conflicts: gr-analog/python/CMakeLists.txt gr-blocks/python/CMakeLists.txt
* swig: added GR_SWIG_TARGET_DEPS core_swig to other swig buildsJohnathan Corgan2012-07-031-0/+2
| | | | | | | | | I have not encountered an issue, however this is the correct thing to do. Now individual components swig builds depend on the gr core swig target. Conflicts: gr-filter/swig/CMakeLists.txt
* Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵Tom Rondeau2012-04-13185-1083/+1083
| | | | | | this in the future. The sed script was provided by Moritz Fischer.
* Merge branch 'master' into nextJohnathan Corgan2012-03-222-4/+4
|\
| * volk: added volk as depedency for various componentsJosh Blum2012-03-222-4/+4
| | | | | | | | | | | | Its important to list the dependent libraries for a test so the library path can be correctly set. This is necessary on platforms without dynamic re-linking.
* | Merge branch 'master' into nextTom Rondeau2012-01-061-2/+2
|\|
| * Remove some more warnings. I'm probably being a bit OCD about these ones, ↵Tom Rondeau2012-01-061-2/+2
| | | | | | | | but it makes the build output so much nicer...
* | Removed autotools, gr-waveform, some cleanupJohnathan Corgan2011-12-088-514/+0
|/ | | | Nick Foster owes Nick Corgan a six-pack of beer!
* docs: fixes some warnings.Tom Rondeau2011-12-061-3/+3
| | | | There is way too much institutional knowledge in these makefiles now. Another reason I'm glad we're going to cmake, which is being kept more sane as all of the problems are already known.
* docs: more fixes for generated swig files. This worked before the merge, but ↵Tom Rondeau2011-12-051-0/+1
| | | | this forces the build system to generate these before processing the other swig files.
* docs: better install of swig docs .i files since we actually have a variable ↵Tom Rondeau2011-12-041-4/+6
| | | | to take care of it already.
* docs: fixing variable for location of header files (SOURCE not BINARY).Tom Rondeau2011-11-301-1/+1
|
* docs: more appropriate variable to use when setting the include/headers ↵Tom Rondeau2011-11-281-1/+1
| | | | directory.
* docs: installing generated _doc.i files under autotools.Tom Rondeau2011-11-281-0/+3
|
* docs: better use of BUILT_SOURCES so I'm not overriding the standard build ↵Tom Rondeau2011-11-271-2/+2
| | | | instructions for it.
* docs: Adding swig doc generation to Makefile.am files.Tom Rondeau2011-11-271-0/+9
|
* docs: forgot to have the generated .i files installed.Tom Rondeau2011-11-271-0/+1
|
* docs: added python doxygen docs to gr-atsc.Tom Rondeau2011-11-272-0/+7
|
* atsc: fix consistent linkage on atsc_make_fs_checkerJosh Blum2011-10-251-1/+1
|
* build: better handling of doxygen building and consistency between build tools.Tom Rondeau2011-10-241-1/+3
|
* the librariesJosh Blum2011-10-231-8/+1
|
* Merge branch 'next' of http://gnuradio.org/git/gnuradio into nextJosh Blum2011-10-193-7/+5
|\
| * Removing usrp, usrp2, gr-usrp, gr-usrp2. Everything is moving to using UHD. ↵Tom Rondeau2011-10-193-7/+5
| | | | | | | | Also removes related M4 and dependency requirements for USRP-related libs.
* | added some more python dash BJosh Blum2011-10-171-1/+1
| |
* | gr: the CMakeLists.txt took a chill pillJosh Blum2011-10-082-44/+44
| |
* | cmake: support for importing executables when doing cross buildJosh Blum2011-09-111-1/+6
| |
* | atsc: forgot to add gruel to the list of deps for unit test, also chmod +x ↵Josh Blum2011-08-031-1/+1
| | | | | | | | unix unit test scripts
* | atsc: did work on symbol visibility and minor tweaks in qa code for MSVCJosh Blum2011-08-0350-92/+178
| |
* | comedi: cmake build support for gr-comedi component (linux only)Josh Blum2011-07-231-66/+66
| |
* | atsc: added cmake support for gr-atsc (unix only)Josh Blum2011-07-232-0/+287
|/
* Removing docstring generation from this branch.Ben Reynwar2011-02-271-1/+1
|
* Fixed Makefiles to generate swig_doc.iBen Reynwar2011-01-301-1/+1
|
* Merge branch 'mergeme/math/gr_math_simplification' into nextTom Rondeau2011-01-222-3/+5
|\
| * gr math simplification:Josh Blum2011-01-172-3/+5
| | | | | | | | | | | | | | | | | | Replaces gr_gcd, gr_isnan, and gr_signbit one-time instances with boot math calls. No point in wrapping these utility math functions into gnuradio when they are 1) provided by boost 2) only called once Removes gr_math.cc, and configure checks for isnan.
* | Updating copyright.Tom Rondeau2011-01-221-1/+1
| |
* | cleanup mkdir usage with boost filesystem:Josh Blum2011-01-181-4/+1
|/ | | | | | | | | | Replaced copy/pasted code and MKDIR_TAKES_ONE_ARG #ifdefs with portable boost filesystem path and directory creation. Gets the correct home directory on windows systems: APPDATA. Replaces large amounts of copypasta with single lines of code. Removes MKDIR_TAKES_ONE_ARG configuration checks from m4 files. Adds boost filesystem and system library as build dependencies.
* Regenerated Makefile.swig.gen'sEric Blossom2010-12-031-5/+5
|
* Update .gitignore'sEric Blossom2010-11-241-0/+3
|
* Major Makefile.am housecleaning. Passes distcheck.Eric Blossom2010-11-242-14/+7
| | | | | | | | | Move all occurrences of swig_built_sources out of Makefile.am's. Move all SWIG related use of BUILT_SOURCES out of Makefile.am's. Clean up 'if PYTHON' conditionalization in gr-* Still left to do: fix Makefile.swig CLEANFILES and no_dist_files such that they remove exactly the generated files.
* Consistently use TESTS += in conditionalsEric Blossom2010-11-241-2/+1
|
* regeneratedRob Savoye2010-11-191-11/+23
|
* regeneratedEric Blossom2010-11-161-1/+1
|
* regeneratedEric Blossom2010-11-101-2/+2
|
* regeneratedRob Savoye2010-11-101-27/+10
|
* regeneratedRob Savoye2010-11-101-8/+7
|
* Remove swig generated python code from C++-only librariesEric Blossom2010-11-101-2/+2
|