Make sure CMake build files end up in release tarball
This commit is contained in:
parent
f771c6451b
commit
6d0e222a6e
@ -38,6 +38,11 @@ SUBDIRS += examples
|
||||
endif
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
config.cmake.h.in \
|
||||
flac-config.cmake.in \
|
||||
cmake/FindOGG.cmake \
|
||||
cmake/UseSystemExtensions.cmake \
|
||||
COPYING.FDL \
|
||||
COPYING.GPL \
|
||||
COPYING.LGPL \
|
||||
|
@ -35,7 +35,7 @@ doc_DATA = \
|
||||
FLAC.tag
|
||||
|
||||
EXTRA_DIST = Doxyfile.in Makefile.lite doxygen.footer.html doxygen.header.html \
|
||||
isoflac.txt $(doc_DATA)
|
||||
isoflac.txt $(doc_DATA) CMakeLists.txt
|
||||
|
||||
distclean-local:
|
||||
rm -rf FLAC.tag html/api doxytmp
|
||||
|
@ -38,7 +38,7 @@ html_DATA = \
|
||||
license.html \
|
||||
ogg_mapping.html
|
||||
|
||||
EXTRA_DIST = $(html_DATA) api
|
||||
EXTRA_DIST = $(html_DATA) api CMakeLists.txt
|
||||
|
||||
if FLaC__HAS_DOXYGEN
|
||||
# The install targets don't copy whole directories so we have to
|
||||
|
@ -22,4 +22,4 @@ logos_DATA = \
|
||||
logo.svg \
|
||||
logo130.gif
|
||||
|
||||
EXTRA_DIST = $(logos_DATA)
|
||||
EXTRA_DIST = $(logos_DATA) CMakeLists.txt
|
||||
|
@ -23,5 +23,6 @@ endif
|
||||
SUBDIRS = c $(CPPLIBS_DIRS)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
README
|
||||
|
@ -17,3 +17,5 @@
|
||||
# distribution.
|
||||
|
||||
SUBDIRS = decode encode
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
example_c_decode_file.vcproj \
|
||||
example_c_decode_file.vcxproj \
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
example_c_encode_file.vcproj \
|
||||
example_c_encode_file.vcxproj \
|
||||
|
@ -17,3 +17,5 @@
|
||||
# distribution.
|
||||
|
||||
SUBDIRS = decode encode
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
example_cpp_decode_file.vcproj \
|
||||
example_cpp_decode_file.vcxproj \
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
example_cpp_encode_file.vcproj \
|
||||
example_cpp_encode_file.vcxproj \
|
||||
|
@ -38,3 +38,5 @@ noinst_PROGRAMS = benchmark_residual
|
||||
benchmark_residual_SOURCES = benchmark_residual.c util.c
|
||||
|
||||
benchmark_residual_LDADD = @LIB_CLOCK_GETTIME@
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
||||
|
@ -39,4 +39,5 @@ SUBDIRS = \
|
||||
$(CPPLIBS_DIRS)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite
|
||||
|
@ -21,6 +21,7 @@ bin_PROGRAMS = flac
|
||||
AM_CFLAGS = @OGG_CFLAGS@
|
||||
AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
Makefile.lite.iffscan \
|
||||
flac.vcproj \
|
||||
|
@ -38,6 +38,7 @@ pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = flac++.pc
|
||||
AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
flac++.pc.in \
|
||||
libFLAC++_dynamic.vcproj \
|
||||
|
@ -72,6 +72,7 @@ pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = flac.pc
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
flac.pc.in \
|
||||
libFLAC_dynamic.vcproj \
|
||||
|
@ -42,3 +42,5 @@ libFLAC_asm_la_SOURCES = \
|
||||
fixed_asm.nasm \
|
||||
lpc_asm.nasm \
|
||||
nasm.h
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
||||
|
@ -21,6 +21,7 @@ bin_PROGRAMS = metaflac
|
||||
AM_CFLAGS = @OGG_CFLAGS@
|
||||
AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
metaflac.vcproj \
|
||||
metaflac.vcxproj \
|
||||
|
@ -35,5 +35,6 @@ libplugin_common_la_SOURCES = \
|
||||
tags.c
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
README
|
||||
|
@ -21,6 +21,7 @@
|
||||
#
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite
|
||||
|
||||
noinst_HEADERS = \
|
||||
|
@ -21,24 +21,30 @@ AUTOMAKE_OPTIONS = subdir-objects
|
||||
AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
README \
|
||||
getopt/CMakeLists.txt \
|
||||
getopt/Makefile.lite \
|
||||
getopt/getopt_static.vcproj \
|
||||
getopt/getopt_static.vcxproj \
|
||||
getopt/getopt_static.vcxproj.filters \
|
||||
grabbag/CMakeLists.txt \
|
||||
grabbag/Makefile.lite \
|
||||
grabbag/grabbag_static.vcproj \
|
||||
grabbag/grabbag_static.vcxproj \
|
||||
grabbag/grabbag_static.vcxproj.filters \
|
||||
replaygain_analysis/CMakeLists.txt \
|
||||
replaygain_analysis/Makefile.lite \
|
||||
replaygain_analysis/replaygain_analysis_static.vcproj \
|
||||
replaygain_analysis/replaygain_analysis_static.vcxproj \
|
||||
replaygain_analysis/replaygain_analysis_static.vcxproj.filters \
|
||||
replaygain_synthesis/CMakeLists.txt \
|
||||
replaygain_synthesis/Makefile.lite \
|
||||
replaygain_synthesis/replaygain_synthesis_static.vcproj \
|
||||
replaygain_synthesis/replaygain_synthesis_static.vcxproj \
|
||||
replaygain_synthesis/replaygain_synthesis_static.vcxproj.filters \
|
||||
utf8/CMakeLists.txt \
|
||||
utf8/Makefile.lite \
|
||||
utf8/charmaps.h \
|
||||
utf8/makemap.c \
|
||||
@ -46,6 +52,7 @@ EXTRA_DIST = \
|
||||
utf8/utf8_static.vcproj \
|
||||
utf8/utf8_static.vcxproj \
|
||||
utf8/utf8_static.vcxproj.filters \
|
||||
win_utf8_io/CMakeLists.txt \
|
||||
win_utf8_io/Makefile.lite \
|
||||
win_utf8_io/win_utf8_io_static.vcproj \
|
||||
win_utf8_io/win_utf8_io_static.vcxproj \
|
||||
|
@ -19,4 +19,5 @@
|
||||
SUBDIRS = cuesheet picture
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
test_cuesheet.vcproj \
|
||||
test_cuesheet.vcxproj \
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
test_picture.vcproj \
|
||||
test_picture.vcxproj \
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
test_libFLAC++.vcproj \
|
||||
test_libFLAC++.vcxproj \
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
test_libFLAC.vcproj \
|
||||
test_libFLAC.vcxproj \
|
||||
|
@ -25,6 +25,7 @@ libtest_libs_common_la_SOURCES = \
|
||||
metadata_utils.c
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
README \
|
||||
test_libs_common_static.vcproj \
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
test_seeking.vcproj \
|
||||
test_seeking.vcxproj \
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
test_streams.vcproj \
|
||||
test_streams.vcxproj \
|
||||
|
@ -17,3 +17,5 @@
|
||||
# distribution.
|
||||
|
||||
SUBDIRS = flacdiff flactimer
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
flacdiff.vcproj \
|
||||
flacdiff.vcxproj \
|
||||
|
@ -17,6 +17,7 @@
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
flactimer.vcproj \
|
||||
flactimer.vcxproj \
|
||||
|
@ -49,6 +49,7 @@ endif
|
||||
@echo "----------------"
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.lite \
|
||||
cuesheet.ok \
|
||||
metaflac.flac.in \
|
||||
|
Loading…
Reference in New Issue
Block a user