diff options
author | Stephen Kelly <steveire@gmail.com> | 2011-08-25 18:31:42 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2011-08-25 18:39:00 (GMT) |
commit | 75596e62f9a54c36943be0a89a0ad9874f50bf99 (patch) | |
tree | a3ffbd1d9d4e92b5ece799c7902cee23f8971101 /Modules/GenerateExportHeader.cmake | |
parent | 826374a45ac8eb7fef9c41a391b1ca759c5a2b31 (diff) | |
download | CMake-75596e62f9a54c36943be0a89a0ad9874f50bf99.zip CMake-75596e62f9a54c36943be0a89a0ad9874f50bf99.tar.gz CMake-75596e62f9a54c36943be0a89a0ad9874f50bf99.tar.bz2 |
Don't start a line with a dash(-)
That is a special character in cmake dox.
Diffstat (limited to 'Modules/GenerateExportHeader.cmake')
-rw-r--r-- | Modules/GenerateExportHeader.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/GenerateExportHeader.cmake b/Modules/GenerateExportHeader.cmake index b441f3c..b6901e4 100644 --- a/Modules/GenerateExportHeader.cmake +++ b/Modules/GenerateExportHeader.cmake @@ -21,8 +21,8 @@ # ADD_COMPILER_EXPORT_FLAGS( [FATAL_WARNINGS] ) # # By default GENERATE_EXPORT_HEADER() generates macro names in a file name -# determined by the name of the library. The ADD_COMPILER_EXPORT_FLAGS macro adds -# -fvisibility=hidden to CMAKE_CXX_FLAGS if supported, and is a no-op on Windows +# determined by the name of the library. The ADD_COMPILER_EXPORT_FLAGS macro +# adds -fvisibility=hidden to CMAKE_CXX_FLAGS if supported, and is a no-op on Windows # which does not need extra compiler flags for exporting support. # # This means that in the simplest case, users of these functions will be equivalent to: |