diff --git a/CMakeLists.txt b/CMakeLists.txt index c6ff029ff..ef70f9a69 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ tiny_read_version(TINY_VERSION HEADER_FOR "${TinyOrm_ns}" ) -# Basic project and cmake build setup +# Basic project and CMake build setup # --- # TODO add support for POSITION_INDEPENDENT_CODE silverqx @@ -77,7 +77,7 @@ tiny_toolchain_requirement( include(FeatureSummary) include(TinyFeatureOptions) -# Initialize default CMake variables on which cmake options depend +# Initialize default CMake variables on which CMake options depend tiny_init_cmake_variables_pre() feature_option(BUILD_SHARED_LIBS diff --git a/cmake/CommonModules/TinyHelpers.cmake b/cmake/CommonModules/TinyHelpers.cmake index 378a59ad8..504c31e29 100644 --- a/cmake/CommonModules/TinyHelpers.cmake +++ b/cmake/CommonModules/TinyHelpers.cmake @@ -478,7 +478,7 @@ function(tiny_should_fix_ccache_clang out_variable) endfunction() -# Fix cmake variables if CMAKE_CXX_COMPILER_LAUNCHER is ccache or sccache +# Fix CMake variables if CMAKE_CXX_COMPILER_LAUNCHER is ccache or sccache # This is a general function that applies fixes for MSVC and Clang compilers, it checks # the current platform and based on it applies correct fixes function(tiny_fix_ccache) diff --git a/cmake/Modules/TinyDeployment.cmake b/cmake/Modules/TinyDeployment.cmake index 9f27fcc4c..9e2de1086 100644 --- a/cmake/Modules/TinyDeployment.cmake +++ b/cmake/Modules/TinyDeployment.cmake @@ -36,7 +36,7 @@ function(tiny_install_tinyorm) install(FILES "$" TYPE BIN OPTIONAL) endif() - # Do not install Package config, config version, header, doc. and cmake helper files + # Do not install Package config, config version, header, doc. and CMake helper files # when installing for VCPKG Debug configuration if(TINY_VCPKG AND CMAKE_BUILD_TYPE STREQUAL "Debug") return() diff --git a/tests/TinyUtils/CMakeLists.txt b/tests/TinyUtils/CMakeLists.txt index 5d56f7358..f4de35945 100644 --- a/tests/TinyUtils/CMakeLists.txt +++ b/tests/TinyUtils/CMakeLists.txt @@ -9,7 +9,7 @@ tiny_read_version(TINYUTILS_VERSION HEADER_FOR "${TinyUtils_ns}" ) -# Basic project and cmake build setup +# Basic project and CMake build setup # --- project(${TinyUtils_ns}