summaryrefslogtreecommitdiff
path: root/gr-howto-write-a-block
AgeCommit message (Collapse)Author
2013-01-01Tweak 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-04docs: Removing some obsoleted Doxygen commands per issue #498.Tom Rondeau
These were set to the defaults and so should not affect previous versions of Doxygen.
2012-12-01Merge branch 'maint'Johnathan Corgan
2012-12-01cmake: fix typo in cmake swig moduleJohnathan Corgan
2012-10-19Removes some swig workaround code put in for ticket 181.Tom Rondeau
This seems to fix the import problems recently seen on 12.10 for loading gnuradio-companion (due to 'from lxml import etree' which was actually due to 'import os' causing a segfault).
2012-04-13Removed 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-07Merge branch 'master' into nextTom Rondeau
Conflicts: gr-howto-write-a-block/Makefile.common gr-howto-write-a-block/config/gr_standalone.m4
2012-04-07Merge branch 'maint'Tom Rondeau
2012-04-07gruel and howto: install gruel .i files in gruel dest. Howto will use that ↵Tom Rondeau
dir during build. howto under both cmake and autotools can be built off cmake or autotools gnuradio builds.
2012-04-01Removes all references to guile and scheme, which are no longer needed.Tom Rondeau
The remaining pmt_serial_tags.scm is parsed by Python already. Future modifications could change this format to not confuse the point.
2012-03-20Merge branch 'master' into nextTom Rondeau
2012-03-15update revision to v3.5.2.1Johnathan Corgan
2012-03-05build: update revision to 3.5.3gitJohnathan Corgan
2012-03-05build: update revision to 3.5.2Johnathan Corgan
2012-03-05build: update from canonical config filesJohnathan Corgan
2012-02-17howto: moving uninstall rules into correct location.Tom Rondeau
2012-02-10Merge branch 'master' into nextTom Rondeau
2012-02-10Merge branch 'master' into nextTom Rondeau
2012-02-06Merge branch 'master' into nextJohnathan Corgan
2012-02-05Merge branch 'master' into nextJohnathan Corgan
2012-01-07build: update revision to 3.5.2gitJohnathan Corgan
2012-01-07build: update revision to 3.5.1Johnathan Corgan
2012-01-07build: update canonical config filesJohnathan Corgan
2011-12-12Merge branch 'master' into nextJohnathan Corgan
2011-12-08Removed autotools, gr-waveform, some cleanupJohnathan Corgan
Nick Foster owes Nick Corgan a six-pack of beer!
2011-12-07build: update revision to 3.5.1gitJohnathan Corgan
2011-12-07build: update version to 3.5.0Johnathan Corgan
2011-12-07build: update config.{guess,sub} with canonical onesJohnathan Corgan
2011-10-22build: update version to 3.5.0gitJohnathan Corgan
2011-10-22Merge branch 'master' into nextJohnathan Corgan
2011-10-22build: update config.{guess,sub} from canonical sourceJohnathan Corgan
2011-10-19Removing usrp, usrp2, gr-usrp, gr-usrp2. Everything is moving to using UHD. ↵Tom Rondeau
Also removes related M4 and dependency requirements for USRP-related libs.
2011-09-24Update revision to 3.4.2gitJohnathan Corgan
2011-09-24Update revision to 3.4.1 releaseJohnathan Corgan
2011-06-11Update revision to 3.5.0gitJohnathan Corgan
2011-06-11Update revision to 3.4.1gitJohnathan Corgan
2011-06-11Update revision to 3.4.0Johnathan Corgan
2011-06-11Update config.sub and config.guess with latest canonical versionsJohnathan Corgan
2011-03-30build: update config.guess and config.sub from canonical sourceJohnathan Corgan
In volk, these are now actual files instead of symlinks
2011-03-16howto: updated ignoresJohnathan Corgan
2011-03-16build: updated version to 3.4.0gitJohnathan Corgan
2011-02-22howto: Was over-zealous before. The TESTS should remain firmly in the if ↵Tom Rondeau
GUILE block.
2011-02-22howto: cleans up the Python build structure for howto; reverts back to ↵Tom Rondeau
making it's own howto module not under gnuradio.
2011-02-22howto: fixes for howto build structure. Passes check but does not pass ↵Tom Rondeau
distcheck.
2011-02-22howto: I think this is a better fix than the last one. The modules are now ↵Tom Rondeau
imported from gnuradio.
2011-02-17howto: moving install path back to howto/ to get it to work.Tom Rondeau
2011-01-22Merge branch 'mergeme/math/gr_math_simplification' into nextTom Rondeau
2011-01-22Updating copyright.Tom Rondeau
2011-01-18cleanup mkdir usage with boost filesystem:Josh Blum
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.
2011-01-17gr math simplification:Josh Blum
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.