Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-01-01 | Tweak INCLUDE dirs such that INCLUDE_DIRECTORIES and LINK_DIRECTORIES are ↵ | Michael L Dickens | |
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). | |||
2012-12-12 | build: removing core_swig from GR_SWIG_TARGET_DEPS. Seems to have been the ↵ | Tom Rondeau | |
cause of the parallel build woes. | |||
2012-07-03 | Merge branch 'maint' | Johnathan Corgan | |
Conflicts: gruel/src/swig/CMakeLists.txt | |||
2012-07-03 | swig: added GR_SWIG_TARGET_DEPS core_swig to other swig builds | Johnathan Corgan | |
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 | |||
2012-06-29 | Merge branch 'maint' | Johnathan Corgan | |
2012-06-29 | audio: switch to BOOST_BIG_ENDIAN macro in OSX audio hdr | Josh Blum | |
The previous one didnt seem to be set by the build system. Perhaps this was lost in the transition to CMake? | |||
2012-06-16 | cmake: add support for SYSCONFDIR | Chí-Thanh Christopher Nguyễn | |
Set with 'cmake -DSYSCONFDIR=target ...' This fixes http://gnuradio.org/redmine/issues/492 | |||
2012-04-13 | Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵ | Tom Rondeau | |
this in the future. The sed script was provided by Moritz Fischer. | |||
2012-04-03 | examples: Reworked locations and installation of examples. | Tom Rondeau | |
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>. | |||
2012-02-16 | Merge branch 'master' into next | Johnathan Corgan | |
2012-02-16 | small tweaks to get stream sizes "more correct" | Michael L Dickens | |
2012-02-16 | allow any input hardware audio rate; fix use of deprecated function ↵ | Michael Dickens | |
'AudioHardwareGetProperty' | |||
2012-01-06 | Merge branch 'master' into next | Tom Rondeau | |
2012-01-06 | Remove some more warnings. I'm probably being a bit OCD about these ones, ↵ | Tom Rondeau | |
but it makes the build output so much nicer... | |||
2011-12-08 | Removed autotools, gr-waveform, some cleanup | Johnathan Corgan | |
Nick Foster owes Nick Corgan a six-pack of beer! | |||
2011-12-06 | docs: fixes some warnings. | Tom Rondeau | |
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. | |||
2011-12-05 | docs: more fixes for generated swig files. This worked before the merge, but ↵ | Tom Rondeau | |
this forces the build system to generate these before processing the other swig files. | |||
2011-12-04 | docs: better install of swig docs .i files since we actually have a variable ↵ | Tom Rondeau | |
to take care of it already. | |||
2011-11-30 | docs: fixing variable for location of header files (SOURCE not BINARY). | Tom Rondeau | |
2011-11-28 | docs: more appropriate variable to use when setting the include/headers ↵ | Tom Rondeau | |
directory. | |||
2011-11-28 | docs: installing generated _doc.i files under autotools. | Tom Rondeau | |
2011-11-27 | docs: better use of BUILT_SOURCES so I'm not overriding the standard build ↵ | Tom Rondeau | |
instructions for it. | |||
2011-11-27 | docs: Adding swig doc generation to Makefile.am files. | Tom Rondeau | |
2011-11-27 | docs: forgot to have the generated .i files installed. | Tom Rondeau | |
2011-11-27 | docs: added python doxygen docs to gr-audio. | Tom Rondeau | |
2011-10-25 | Merge branch 'maint' | Tom Rondeau | |
2011-10-25 | Merge branch 'upstream/alsa-source-warning-fix' into maint | Tom Rondeau | |
2011-10-23 | the libraries | Josh Blum | |
2011-10-22 | docs: don't need to distribute README files in docs component. Just the ↵ | Tom Rondeau | |
install path. | |||
2011-10-20 | docs: installing README files. | Tom Rondeau | |
2011-10-19 | grc: added throttle tag to blocks that throttle | Josh Blum | |
2011-10-19 | cmake: fix that component depends on component hack | Josh Blum | |
2011-10-17 | Merge branch 'next' of http://gnuradio.org/git/gnuradio into next | Josh Blum | |
2011-10-16 | Merge branch 'master' into next | Tom Rondeau | |
Conflicts: gr-qtgui/lib/Makefile.am | |||
2011-10-16 | Merge branch 'maint' | Tom Rondeau | |
2011-10-15 | build: fixed a bug with missing boost filesystem lib. | Tom Rondeau | |
2011-10-11 | Merge branch 'next' of http://gnuradio.org/git/gnuradio into next | Josh Blum | |
Conflicts: gr-digital/include/digital_constellation.h | |||
2011-10-09 | docs: adding gitignore for gr-audio/doc | Tom Rondeau | |
2011-10-09 | docs: include the doc directory in gr-aduio. | Tom Rondeau | |
2011-10-09 | docs: adding doc directory, Doxygen page, and README for audio package. | Tom Rondeau | |
2011-10-08 | gr: the CMakeLists.txt took a chill pill | Josh Blum | |
2011-10-08 | Merge branch 'next' of http://gnuradio.org/git/gnuradio into digital | Josh Blum | |
2011-10-07 | audio_alsa_source : Fix warning on 32 bit builds. | Philip Balister | |
On machines where sizeof(long) = sizeof(int) the code for calculating scale factors produced an overflow warning. This change simplifies the code by eliminating the shift. The compiler should calculate the constant at compile time anyway. Signed-off-by: Philip Balister <philip@opensdr.com> | |||
2011-10-06 | Merge branch 'master' into next | Tom Rondeau | |
2011-10-03 | audio_alsa_sink : Fix warning on 32 bit builds. | Philip Balister | |
On machines where sizeof(long) = sizeof(int) the code for calculating scale factors produced an overflow warning. This change simplifies the code by eliminating the shift. The compiler should calculate the constant at compile time anyway. Signed-off-by: Philip Balister <philip@opensdr.com> | |||
2011-09-28 | Merge branch 'next' of http://gnuradio.org/git/gnuradio into next | Josh Blum | |
2011-09-27 | Merge branch 'master' into next | Johnathan Corgan | |
2011-09-27 | swig: language independent exception handler | Josh Blum | |
2011-09-15 | audio: may have to link Carbon | Josh Blum | |
2011-08-02 | cmake: language tweak for component group description | Josh Blum | |