Comment tweaks in CMakeLists.txt.

This commit is contained in:
vladlosev 2010-05-13 18:02:27 +00:00
parent 9af267d247
commit 2c697f5919

View File

@ -39,18 +39,18 @@ if (COMMAND set_up_hermetic_build)
set_up_hermetic_build() set_up_hermetic_build()
endif() endif()
# Defines functions and variables used by Google Test.
include(cmake/internal_utils.cmake) include(cmake/internal_utils.cmake)
fix_default_settings() # Defined in internal_utils.cmake. fix_default_settings() # Defined in internal_utils.cmake.
# Where gtest's .h files can be found. # Where Google Test's .h files can be found.
include_directories( include_directories(
${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR}/include
${gtest_SOURCE_DIR}) ${gtest_SOURCE_DIR})
# Where the gtest libraries can be found. # Where Google Test's libraries can be found.
link_directories( link_directories(${gtest_BINARY_DIR}/src)
${gtest_BINARY_DIR}/src)
######################################################################## ########################################################################
# #
@ -92,7 +92,7 @@ endif()
# You can skip this section if you aren't interested in testing # You can skip this section if you aren't interested in testing
# Google Test itself. # Google Test itself.
# #
# Most of the tests are not built by default. To build them, set the # The tests are not built by default. To build them, set the
# gtest_build_tests option to ON. You can do it by running ccmake # gtest_build_tests option to ON. You can do it by running ccmake
# or specifying the -Dgtest_build_tests=ON flag when running cmake. # or specifying the -Dgtest_build_tests=ON flag when running cmake.