Add cmake files to autoconf's dist

This commit is contained in:
Kornel Benko 2014-08-31 15:21:20 +02:00
parent dc75522161
commit 6c7b5b12c7
12 changed files with 40 additions and 10 deletions

View File

@ -22,7 +22,7 @@ SUBDIRS = config development po $(BOOST) src sourcedoc lib \
EXTRA_DIST = ANNOUNCE INSTALL.autoconf RELEASE-NOTES UPGRADING \
INSTALL.Win32 INSTALL.MacOSX INSTALL.cmake \
README.Win32 README.Cygwin README.localization lyx.1in \
autogen.sh
autogen.sh CMakeLists.txt po/CMakeLists.txt
man_MANS = lyx.1

View File

@ -7,7 +7,15 @@ noinst_LIBRARIES = liblyxboost.a
#BUILT_SOURCES = $(PCH_FILE)
#AM_CPPFLAGS += $(PCH_FLAGS)
EXTRA_DIST = boost
EXTRA_DIST = boost \
CMakeLists.txt \
libs/CMakeLists.txt \
libs/regex/CMakeLists.txt \
libs/regex/regex.vcproj \
libs/regex/src/CMakeLists.txt \
libs/signals/CMakeLists.txt \
libs/signals/signals.vcproj \
libs/signals/src/CMakeLists.txt
AM_CPPFLAGS += -DBOOST_USER_CONFIG="<config.h>"
AM_CPPFLAGS += $(BOOST_INCLUDES)

View File

@ -38,6 +38,7 @@ Win32/packaging/installer/gui/external.nsh \
Win32/packaging/installer/gui/io_latex.ini \
Win32/packaging/installer/gui/LaTeXFolder.nsh \
Win32/packaging/installer/include/declarations.nsh \
Win32/packaging/installer/include/declarations.nsh.cmake \
Win32/packaging/installer/include/detection.nsh \
Win32/packaging/installer/include/dictionaries.nsh \
Win32/packaging/installer/include/filelist.nsh \
@ -90,6 +91,7 @@ Win32/vld/cmake/vld.cmake \
autotests/CMakeLists.txt \
autotests/check_load.cmake \
autotests/export.cmake \
autotests/ExportTests.cmake \
autotests/keytest.py \
autotests/lyx2lyxtest.cmake \
autotests/single-test.cmake \
@ -100,6 +102,9 @@ checkurls/search_url.pl \
cmake/ConfigureChecks.cmake \
cmake/Install.cmake \
cmake/LyxPackaging.cmake \
cmake/LyX_description.txt \
cmake/LyX_license.txt \
cmake/LyX_summary.txt \
cmake/PyCompile.cmake \
cmake/config.cpp.cmake \
cmake/config.h.cmake \
@ -110,10 +115,12 @@ cmake/doc/CMakeLists.txt \
cmake/doc/ReplaceValues.pl \
cmake/doc/ReplaceValues.py \
cmake/lyx_date.h.cmake \
cmake/lyx.rc \
cmake/man/CMakeLists.txt \
cmake/modules/FindASPELL.cmake \
cmake/modules/FindAiksaurusLIB.cmake \
cmake/modules/FindEnchant.cmake \
cmake/modules/FindCXX11Compiler.cmake \
cmake/modules/FindGNUWIN32.cmake \
cmake/modules/FindHunspell.cmake \
cmake/modules/FindICONV.cmake \
@ -129,9 +136,11 @@ cmake/modules/LyXuic.cmake \
cmake/modules/MacroBoolTo01.cmake \
cmake/modules/PCHSupport_26.cmake \
cmake/modules/ProjectSourceGroup.cmake \
cmake/pcheaders.h \
cmake/po/cat.py \
cmake/po/dos2unix.py \
cmake/po/unix2dos.py \
cmake/post_install/CMakeLists.txt \
cmake/scripts/LyXCreateImagesResource.cmake \
cmake/scripts/LyXGetVersion.cmake \
keystest/cache-bisect.py \

View File

@ -4,6 +4,8 @@ SUBDIRS = doc lyx2lyx
CHMOD = chmod
EXTRA_DIST = examples/CMakeLists.txt scripts/CMakeLists.txt
dist_pkgdata_DATA = CREDITS autocorrect chkconfig.ltx external_templates \
encodings layouttranslations languages latexfonts symbols syntax.default \
unicodesymbols

View File

@ -2,7 +2,7 @@ include $(top_srcdir)/config/common.am
CLEANFILES += *.pyc *.pyo
EXTRA_DIST = lyx2lyx_version.py.in test_parser_tools.py
EXTRA_DIST = lyx2lyx_version.py.in test_parser_tools.py CMakeLists.txt
CHMOD = chmod

View File

@ -1,6 +1,6 @@
include $(top_srcdir)/config/common.am
EXTRA_DIST = Doxyfile.in
EXTRA_DIST = Doxyfile.in CMakeLists.txt
OUTPUT_DIR = .

View File

@ -11,7 +11,12 @@ endif
SUBDIRS = support frontends . $(CLIENT) tex2lyx
EXTRA_DIST = pch.h
EXTRA_DIST = pch.h \
CMakeLists.txt \
graphics/CMakeLists.txt \
insets/CMakeLists.txt \
mathed/CMakeLists.txt \
tests/CMakeLists.txt
OTHERLIBS = $(BOOST_LIBS) $(MYTHES_LIBS) $(ENCHANT_LIBS) $(HUNSPELL_LIBS) \
@LIBS@ $(SOCKET_LIBS) $(LIBSHLWAPI) $(LIBPSAPI)
@ -668,7 +673,7 @@ endif
############################## Tests ##################################
EXTRA_DIST += \
tests/test_layout
tests/test_layout CMakeLists.txt
alltests: check alltests-recursive

View File

@ -6,7 +6,7 @@ man_MANS = lyxclient.1
bin_PROGRAMS = lyxclient
EXTRA_DIST = lyxclient.1in
EXTRA_DIST = lyxclient.1in CMakeLists.txt
AM_CPPFLAGS += -I$(srcdir)/.. $(BOOST_INCLUDES)

View File

@ -27,6 +27,9 @@ liblyxfrontends_a_SOURCES = \
################################# Tests ################################
EXTRA_DIST = \
CMakeLists.txt \
tests/CMakeLists.txt \
tests/test_biblio.cmake \
tests/test_biblio \
tests/regfiles/biblio

View File

@ -378,7 +378,7 @@ liblyxqt4_a_SOURCES = \
$(MOCHEADER) \
$(NOMOCHEADER)
EXTRA_DIST = pch.h $(UIFILES:%=ui/%)
EXTRA_DIST = pch.h CMakeLists.txt $(UIFILES:%=ui/%)
BUILT_SOURCES += $(PCH_FILE)
AM_CPPFLAGS += $(PCH_FLAGS)

View File

@ -3,7 +3,8 @@ include $(top_srcdir)/config/common.am
CLEANFILES += $(BUILT_SOURCES)
EXTRA_DIST = pch.h \
os_cygwin.cpp os_unix.cpp os_win32.cpp os_win32.h
os_cygwin.cpp os_unix.cpp os_win32.cpp os_win32.h \
CMakeLists.txt tests/CMakeLists.txt tests/supporttest.cmake
noinst_LIBRARIES = liblyxsupport.a

View File

@ -1,6 +1,7 @@
include $(top_srcdir)/config/common.am
EXTRA_DIST = TODO.txt tex2lyx.1in $(TEST_FILES) $(TEST_RESULTS) pch.h
EXTRA_DIST = TODO.txt tex2lyx.1in $(TEST_FILES) $(TEST_RESULTS) pch.h \
CMakeLists.txt test/CMakeLists.txt
#noinst_LIBRARIES = libtexparser.a
#
@ -20,6 +21,7 @@ AM_CPPFLAGS += $(PCH_FLAGS) -I$(top_srcdir)/src/tex2lyx \
-I$(top_srcdir)/src -I$(top_builddir) $(BOOST_INCLUDES)
TEST_FILES = \
test/runtests.cmake \
test/runtests.py \
test/box-color-size-space-align.tex \
test/CJK.tex \