diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2013-05-03 10:54:36 -0700 |
---|---|---|
committer | Nicholas Corgan <nick.corgan@ettus.com> | 2013-05-03 10:59:37 -0700 |
commit | b0a4e2ad081cc55ad309d44b59583f0140f87608 (patch) | |
tree | 4546a2036f7261c65d2477a2e12112a4b3bec8da /host/cmake | |
parent | 3cccb57414c87d3af97974870d877393ab5a51ff (diff) | |
download | uhd-b0a4e2ad081cc55ad309d44b59583f0140f87608.tar.gz uhd-b0a4e2ad081cc55ad309d44b59583f0140f87608.tar.bz2 uhd-b0a4e2ad081cc55ad309d44b59583f0140f87608.zip |
UHD has man pages now
* Linux installations will automatically install man pages
* Moved usrp_n2xx_simple_net_burner and usrp2_card_burner into bin
Diffstat (limited to 'host/cmake')
-rw-r--r-- | host/cmake/Modules/FindGZip.cmake | 21 | ||||
-rw-r--r-- | host/cmake/Modules/UHDPackage.cmake | 4 |
2 files changed, 25 insertions, 0 deletions
diff --git a/host/cmake/Modules/FindGZip.cmake b/host/cmake/Modules/FindGZip.cmake new file mode 100644 index 000000000..05fe26b4c --- /dev/null +++ b/host/cmake/Modules/FindGZip.cmake @@ -0,0 +1,21 @@ +# +# Copyright 2013 Ettus Research LLC +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + +######################################################################## +FIND_PROGRAM(GZIP_EXECUTABLE NAMES gzip) +INCLUDE(FindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(GZip DEFAULT_MSG GZIP_EXECUTABLE) diff --git a/host/cmake/Modules/UHDPackage.cmake b/host/cmake/Modules/UHDPackage.cmake index a535241a7..5e2303ff8 100644 --- a/host/cmake/Modules/UHDPackage.cmake +++ b/host/cmake/Modules/UHDPackage.cmake @@ -155,6 +155,10 @@ FOREACH(filename preinst postinst prerm postrm) ${CMAKE_BINARY_DIR}/debian/${filename} @ONLY) ENDFOREACH(filename) +CONFIGURE_FILE( + ${CMAKE_SOURCE_DIR}/cmake/debian/watch + ${CMAKE_BINARY_DIR}/debian/watch +@ONLY) ######################################################################## # Setup CPack RPM |