Forráskód Böngészése

Add GoogleTest upgrade improvement to README.md file

Patrick-Christopher Mattulat 2 éve
szülő
commit
e347da8498
2 módosított fájl, 2 hozzáadás és 1 törlés
  1. 1 1
      CMakeLists.txt
  2. 1 0
      README.md

+ 1 - 1
CMakeLists.txt

@@ -27,7 +27,7 @@ set(GOOGLE_TEST_MODULE googletest-1.11.0)
 # Options
 ##########################################################
 
-option(LS_STD_BUILD_WITH_TESTS "Build project with tests..." ON)
+option(LS_STD_BUILD_WITH_TESTS "Build project with tests..." OFF)
 option(LS_STD_BUILD_STATIC "Build ls_std static library..." ON)
 option(LS_STD_BUILD_SHARED "Build ls_std shared library..." OFF)
 option(LS_STD_BUILD_MODULE "Build ls_std module library..." OFF)

+ 1 - 0
README.md

@@ -44,6 +44,7 @@ A __Date__ class comes with this submodule, which you can use to represent a dat
 - there is a cmake guard now to ensure that only one goal at the time is being build
 - test suites for shared libraries have been introduced to ensure that building and linking created shared library is working
 - namespaces have been improved library wide and are more specific - __there is no _ls_std_ namespace anymore__ - instead you can choose submodule specific namespaces (e.g. _ls::std::boxing::_)
+- GoogleTest framework has been upgraded to 1.11.0
 
 #### Fixes ####