CMakeAddFortranSubdirectory: Fix documentation format and typos

Indent the function signature correctly.  Fix some typos.  Fix the
copyright year.
This commit is contained in:
Brad King 2011-12-15 10:48:33 -05:00
parent e4ae038f5d
commit d6b031283a
1 changed files with 12 additions and 14 deletions

View File

@ -7,27 +7,25 @@
# an external project to build with the MinGW tools. It will also # an external project to build with the MinGW tools. It will also
# create imported targets for the libraries created. This will only # create imported targets for the libraries created. This will only
# work if the fortran code is built into a dll, so BUILD_SHARED_LIBS # work if the fortran code is built into a dll, so BUILD_SHARED_LIBS
# is turned on in the project. In addition the GNUtoMS option is set # is turned on in the project. In addition the CMAKE_GNUtoMS option
# to on, so that the MS .lib files are created. # is set to on, so that the MS .lib files are created.
# Usage is as follows: # Usage is as follows:
# cmake_add_fortran_subdirectory( # cmake_add_fortran_subdirectory(
# <subdir> # name of subdirectory # <subdir> # name of subdirectory
# PROJECT <project_name> # project name in sbudir toplevel CMakeLists.txt # PROJECT <project_name> # project name in subdir top CMakeLists.txt
# ARCHIVE_DIR <dir> # dir where project places .lib files # ARCHIVE_DIR <dir> # dir where project places .lib files
# RUNTIME_DIR <dir> # dir where project places .dll files # RUNTIME_DIR <dir> # dir where project places .dll files
# LIBRARIES lib2 lib2 # names of libraries created and exported # LIBRARIES <lib>... # names of library targets to import
# LINK_LIBRARIES # link interface libraries for LIBRARIES # LINK_LIBRARIES # link interface libraries for LIBRARIES
# LINK_LIBS <lib1> <dep1> <dep2> ... <depN> # [LINK_LIBS <lib> <dep>...]...
# LINK_LIBS <lib2> <dep1> <dep2> ... <depN> # CMAKE_COMMAND_LINE ... # extra command line flags to pass to cmake
# CMAKE_COMMAND_LINE # extra command line flags to pass to cmake
# ) # )
# Relative paths in ARCHIVE_DIR and RUNTIME_DIR are interpreted with respect # Relative paths in ARCHIVE_DIR and RUNTIME_DIR are interpreted with respect
# to the build directory corresponding to the source directory in which the # to the build directory corresponding to the source directory in which the
# function is invoked. # function is invoked.
#
#============================================================================= #=============================================================================
# Copyright 2002-2009 Kitware, Inc. # Copyright 2011 Kitware, Inc.
# #
# Distributed under the OSI-approved BSD License (the "License"); # Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details. # see accompanying file Copyright.txt for details.