UseLATEX/CMakeLists.txt
Kenneth Moreland cf7af26067 Move cmake_minimum_required to top of CMakeLists.txt
I've recently been told that this and other policy-setting commands
should be placed at the beginning, before the project command.
2011-08-15 15:07:31 -06:00

13 lines
361 B
CMake

CMAKE_MINIMUM_REQUIRED(VERSION 2.4)
PROJECT(UseLATEX_DOC NONE)
INCLUDE(UseLATEX.cmake)
# Note that normally CMakeLists.txt would not be considered an
# input to the document, but in this special case of documenting
# UseLATEX.cmake the contents of this file is actually included
# in the document.
ADD_LATEX_DOCUMENT(UseLATEX.tex
INPUTS CMakeLists.txt
)