]> git.lyx.org Git - lyx.git/commitdiff
Add cmake files to autoconf's dist
authorKornel Benko <kornel@lyx.org>
Sun, 31 Aug 2014 13:21:20 +0000 (15:21 +0200)
committerKornel Benko <kornel@lyx.org>
Sun, 31 Aug 2014 13:21:20 +0000 (15:21 +0200)
12 files changed:
Makefile.am
boost/Makefile.am
development/Makefile.am
lib/Makefile.am
lib/lyx2lyx/Makefile.am
sourcedoc/Makefile.am
src/Makefile.am
src/client/Makefile.am
src/frontends/Makefile.am
src/frontends/qt4/Makefile.am
src/support/Makefile.am
src/tex2lyx/Makefile.am

index ec8bbaaeb6fff5e1e30cdcdb476d31ba9ff217f8..ceb8d9653a6c9f02ed2cddfda77502cb3b5f06fb 100644 (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
 
index d5ec00d7eb134af8c5c17baeb4aa40afd30dc70b..4e52873223bc3f0dbc13e59b868e58a534adf4cc 100644 (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)
index ce53bab1de349b03d3c44985c375c8c781dd3571..db5de46291192389d3b7b7c3aebee219877084aa 100644 (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 \
index 60a0327ff74981b2ee3201dc891e269f1cbe00fb..32b51334c0414fb8b51965d132e253ee0760b7bc 100644 (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
index 4bc7641851a8fbfa7b9c8b6f28b15b5c96bbfec1..ace1d72bc3f801cd175346c6d67996287e1b9fd4 100644 (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
 
index c446d5c7539f5cd3257591f1e54b7facf3c1c7a4..9b69fa64562efffa332a5cdc4e71319d269fceef 100644 (file)
@@ -1,6 +1,6 @@
 include $(top_srcdir)/config/common.am
 
-EXTRA_DIST = Doxyfile.in
+EXTRA_DIST = Doxyfile.in CMakeLists.txt
 
 OUTPUT_DIR = .
 
index 17bad02b84f71803b08ddaf63dbb6520674484df..dccf8d1de083877763b5b49cf5338b2bb030057e 100644 (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
 
index 3251ac1a1a3d1b6476386176fbaf75fc4f8afb7a..d652f0f696bd492d5a1750b0993fc61cda6291e4 100644 (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)
 
index ea0f09793f6272a189b96579ea359be56aaffa36..aa74e57eca62067e01c4b49cdb1dc959e685dbb4 100644 (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
 
index 5270ba46d189cbb5e01d0b82081cda2869fb922b..21e866d1f72e53d182bf98f45e6807e91f3756c2 100644 (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)
 
index 52e31aa85993fd7faaace521d7b8eb60654df280..ac43818e3e62c63464b480ff789dba4853c0386e 100644 (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
 
index fe36218a77907ab0b81fcb9f57eb50a24b548972..810e693b26e00ea6b4d840e11a5dbfe4b77405a0 100644 (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 \