[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] git://gnuradio.org/jblum branch, next, updated. 626018
From: |
git version control |
Subject: |
[Commit-gnuradio] git://gnuradio.org/jblum branch, next, updated. 626018eb037808cdc32b5eb1907ae9d5f80d3e55 |
Date: |
Thu, 4 Aug 2011 17:30:51 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "git://gnuradio.org/jblum".
The branch, next has been updated
via 626018eb037808cdc32b5eb1907ae9d5f80d3e55 (commit)
via a498339d2950955f258ae282b61f60e4e6e647d3 (commit)
from 2a134bd58fa95c2bee43611b86a3e479a3f989cf (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 626018eb037808cdc32b5eb1907ae9d5f80d3e55
Author: Josh Blum <address@hidden>
Date: Thu Aug 4 10:33:49 2011 -0700
cmake: re-imagining of how to write a block w/ cmake and boost unit test
commit a498339d2950955f258ae282b61f60e4e6e647d3
Author: Josh Blum <address@hidden>
Date: Thu Aug 4 10:31:15 2011 -0700
cmake: specify all the boosts, remove dummy sys/time.h for msvc build
-----------------------------------------------------------------------
Summary of changes:
CMakeLists.txt | 4 +-
cmake/Modules/GrBoost.cmake | 10 ++-
cmake/msvc/sys/time.h | 69 -------------
gr-howto-write-a-block-cmake/CMakeLists.txt | 103 ++++++++++++++++++++
gr-howto-write-a-block-cmake/apps/CMakeLists.txt | 26 +++++
.../apps/howto_square.grc | 0
.../apps/howto_square.py | 0
.../cmake}/Modules/CMakeParseArgumentsCopy.cmake | 0
.../cmake/Modules/FindGnuradioCore.cmake | 26 +++++
.../cmake/Modules/FindGruel.cmake | 26 +++++
.../cmake}/Modules/GrPlatform.cmake | 0
.../cmake}/Modules/GrPython.cmake | 0
.../cmake}/Modules/GrSwig.cmake | 0
.../cmake}/Modules/GrTest.cmake | 0
gr-howto-write-a-block-cmake/grc/CMakeLists.txt | 24 +++++
.../grc/howto_square2_ff.xml | 0
.../grc/howto_square_ff.xml | 0
gr-howto-write-a-block-cmake/lib/CMakeLists.txt | 64 ++++++++++++
gr-howto-write-a-block-cmake/lib/howto_api.h | 33 ++++++
.../lib/howto_square2_ff.cc | 0
.../lib/howto_square2_ff.h | 78 +++++++++++++++
.../lib/howto_square_ff.cc | 0
gr-howto-write-a-block-cmake/lib/howto_square_ff.h | 79 +++++++++++++++
.../lib/qa_howto_square2_ff.cc | 32 ++++++
.../lib/qa_howto_square_ff.cc | 32 ++++++
gr-howto-write-a-block-cmake/python/CMakeLists.txt | 44 +++++++++
.../python/__init__.py | 0
.../python/qa_howto.py | 0
gr-howto-write-a-block-cmake/swig/CMakeLists.txt | 55 +++++++++++
.../swig/howto_square2_ff.i | 0
.../swig/howto_square_ff.i | 0
.../swig/howto_swig.i | 0
32 files changed, 632 insertions(+), 73 deletions(-)
delete mode 100644 cmake/msvc/sys/time.h
create mode 100644 gr-howto-write-a-block-cmake/CMakeLists.txt
create mode 100644 gr-howto-write-a-block-cmake/apps/CMakeLists.txt
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/apps/howto_square.grc (100%)
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/apps/howto_square.py (100%)
copy {cmake =>
gr-howto-write-a-block-cmake/cmake}/Modules/CMakeParseArgumentsCopy.cmake (100%)
create mode 100644
gr-howto-write-a-block-cmake/cmake/Modules/FindGnuradioCore.cmake
create mode 100644 gr-howto-write-a-block-cmake/cmake/Modules/FindGruel.cmake
copy {cmake => gr-howto-write-a-block-cmake/cmake}/Modules/GrPlatform.cmake
(100%)
copy {cmake => gr-howto-write-a-block-cmake/cmake}/Modules/GrPython.cmake
(100%)
copy {cmake => gr-howto-write-a-block-cmake/cmake}/Modules/GrSwig.cmake (100%)
copy {cmake => gr-howto-write-a-block-cmake/cmake}/Modules/GrTest.cmake (100%)
create mode 100644 gr-howto-write-a-block-cmake/grc/CMakeLists.txt
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/grc/howto_square2_ff.xml (100%)
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/grc/howto_square_ff.xml (100%)
create mode 100644 gr-howto-write-a-block-cmake/lib/CMakeLists.txt
create mode 100644 gr-howto-write-a-block-cmake/lib/howto_api.h
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/lib/howto_square2_ff.cc (100%)
create mode 100644 gr-howto-write-a-block-cmake/lib/howto_square2_ff.h
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/lib/howto_square_ff.cc (100%)
create mode 100644 gr-howto-write-a-block-cmake/lib/howto_square_ff.h
create mode 100644 gr-howto-write-a-block-cmake/lib/qa_howto_square2_ff.cc
create mode 100644 gr-howto-write-a-block-cmake/lib/qa_howto_square_ff.cc
create mode 100644 gr-howto-write-a-block-cmake/python/CMakeLists.txt
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/python/__init__.py (100%)
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/python/qa_howto.py (100%)
create mode 100644 gr-howto-write-a-block-cmake/swig/CMakeLists.txt
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/swig/howto_square2_ff.i (100%)
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/swig/howto_square_ff.i (100%)
copy {gr-howto-write-a-block =>
gr-howto-write-a-block-cmake}/swig/howto_swig.i (100%)
hooks/post-receive
--
git://gnuradio.org/jblum
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] git://gnuradio.org/jblum branch, next, updated. 626018eb037808cdc32b5eb1907ae9d5f80d3e55,
git version control <=