Browse Source

CMakeLists.txt: fix some inconsistent coding style

Signed-off-by: Ming Liu <liu.ming50@gmail.com>
pull/24/head
Ming Liu 2 years ago
committed by Stefano Babic
parent
commit
5d3e33c203
  1. 4
      CMakeLists.txt

4
CMakeLists.txt

@ -29,8 +29,8 @@ add_subdirectory (src)
# first we can indicate the documentation build as an option and set it to ON by default
option(BUILD_DOC "Build documentation" ON)
# check if Doxygen is installed
if(BUILD_DOC)
# check if Doxygen is installed
find_package(Doxygen)
if(DOXYGEN_FOUND)
# set input and output files
@ -50,4 +50,4 @@ if(BUILD_DOC)
else(DOXYGEN_FOUND)
message("Doxygen need to be installed to generate the doxygen documentation")
endif(DOXYGEN_FOUND)
endif()
endif(BUILD_DOC)

Loading…
Cancel
Save