Cmake tests: Test export xhtml always, independent of default output format

This commit is contained in:
Kornel Benko 2015-04-02 09:51:53 +02:00
parent 6cd29398f6
commit 953e56492a

View File

@ -50,10 +50,12 @@ macro(getoutputformats filepath varname)
set(out_formats "xhtml" ${PDF_FORMATS}) set(out_formats "xhtml" ${PDF_FORMATS})
elseif(_format MATCHES "dvi$") elseif(_format MATCHES "dvi$")
set(out_formats "xhtml" ${DVI_FORMATS}) set(out_formats "xhtml" ${DVI_FORMATS})
elseif(_format MATCHES "xhtml")
set(out_formats "xhtml")
else() else()
# Respect all other output formats # Respect all other output formats
# like "eps3", "xhtml" # like "eps3"
set(out_formats ${_format}) set(out_formats "xhtml" ${_format})
endif() endif()
break() break()
endif() endif()