UseLATEX/tests/DefaultTargets
Anatoly Borodin fb07aa109f Require CMake version >= 2.8.4
The newest 3.* CMake versions may be missing in some distributions.

The most recent feature required by UseLATEX and its tests is
ced1d5eccd:
"Skip file-level dependencies on custom targets (#11332)". The commit is
included in the release version 2.8.4.

The following error messages are produced during compilation with
earlier CMake versions:

	[100%] Built target UseLATEX_pdf
	make[2]: *** No rule to make target `UseLATEX_pdf', needed by `UseLATEX_build/CMakeFiles/UseLATEX'.  Stop.

Signed-off-by: Anatoly Borodin <anatoly.borodin@gmail.com>
2015-07-23 22:40:31 +02:00
..
CMakeLists.txt Require CMake version >= 2.8.4 2015-07-23 22:40:31 +02:00
DefaultDvi.tex Add test for default targets. 2013-03-12 09:54:04 -06:00
DefaultHtml.tex Add FORCE_* arguments. 2014-12-15 00:25:02 -05:00
DefaultPdf.tex Add test for default targets. 2013-03-12 09:54:04 -06:00
NoDefault.tex Add test for default targets. 2013-03-12 09:54:04 -06:00
README Add FORCE_* arguments. 2014-12-15 00:25:02 -05:00

This test checks to make sure that the appropriate targets are being made
by default for LaTeX documents with forced builds.

The following documents exist and the default targets (made with no
arguments to make) should create the following files (in addition to the
standard auxileary files). This is assuming LATEX_DEFAULT_BUILD is not set
to Ps or SafePdf.

NoDefault.tex:		-nothing-
DefaultDvi.tex:		DefaultDvi.dvi
DefaultPdf.tex:		DefaultPdf.pdf
DefaultHtml.tex:        DefaultHtml.html DefaultHtml.dvi

Looking at the transpose, here are the files expected per extention.

*.dvi:	DefaultDvi.dvi DefaultHtml.dvi
*.pdf:	DefaultPdf.pdf
*.html:	DefaultHtml.html