Update installed files
This commit is contained in:
parent
01a21b2c36
commit
01e767386a
6 changed files with 14 additions and 46 deletions
|
@ -1,14 +1,3 @@
|
|||
# rtl_433 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 GNU Radio; see the file COPYING. If not, write to
|
||||
# the Free Software Foundation, Inc., 51 Franklin Street,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
|
||||
|
||||
########################################################################
|
||||
# Project setup
|
||||
########################################################################
|
||||
|
@ -171,6 +160,7 @@ add_subdirectory(src)
|
|||
if(BUILD_TEST)
|
||||
add_subdirectory(tests)
|
||||
endif(BUILD_TEST)
|
||||
add_subdirectory(conf)
|
||||
|
||||
# use space-separation format for the pc file
|
||||
STRING(REPLACE ";" " " RTL433_PC_CFLAGS "${RTL433_PC_CFLAGS}")
|
||||
|
|
9
conf/CMakeLists.txt
Normal file
9
conf/CMakeLists.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
########################################################################
|
||||
# Install example configuration files
|
||||
########################################################################
|
||||
file(GLOB RTL433_CONF_FILES "*.conf")
|
||||
|
||||
install(FILES
|
||||
${RTL433_CONF_FILES}
|
||||
DESTINATION etc/rtl_433
|
||||
)
|
|
@ -1,22 +1,3 @@
|
|||
# Copyright 2012 OSMOCOM Project
|
||||
#
|
||||
# This file is part of rtl-sdr
|
||||
#
|
||||
# GNU Radio 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, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
|
||||
# the Free Software Foundation, Inc., 51 Franklin Street,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
|
||||
########################################################################
|
||||
# Install public header files
|
||||
########################################################################
|
||||
|
|
|
@ -1,20 +1,5 @@
|
|||
# rtl_433 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, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# rtl_433 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 GNU Radio; see the file COPYING. If not, write to
|
||||
# the Free Software Foundation, Inc., 51 Franklin Street,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
|
||||
########################################################################
|
||||
# Build utility
|
||||
# Build libraries and executables
|
||||
########################################################################
|
||||
add_executable(rtl_433
|
||||
am_analyze.c
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
########################################################################
|
||||
# Compile test cases
|
||||
########################################################################
|
||||
add_executable(data-test data-test.c)
|
||||
|
||||
target_link_libraries(data-test data)
|
||||
|
|
Loading…
Add table
Reference in a new issue