From 05ab6f753b7efcba94ae7929bc94dcedbb248fff Mon Sep 17 00:00:00 2001 From: PRIYANKjakharia <167257749+PRIYANKjakharia@users.noreply.github.com> Date: Fri, 4 Oct 2024 21:12:37 +0530 Subject: [PATCH] Update README-cmake.md correction of a few grammatical errors --- README-cmake.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README-cmake.md b/README-cmake.md index 20eeaad4ece3..72f947c45817 100644 --- a/README-cmake.md +++ b/README-cmake.md @@ -2,12 +2,12 @@ CMake Guide =========== -This is a guide describing how to use the Vespa specific CMake functions and macros. -The Vespa CMake setup wraps or combines together a number of CMake functions in order to simplify defining library and executable targets, and to automatically create targets that depend on a subset of targets. +This is a guide describing how to use the Vespa-specific CMake functions and macros. +The Vespa CMake setup wraps or combines a number of CMake functions to simplify defining library and executable targets, and to automatically create targets that depend on a subset of targets. # `vespa_add_library` The `vespa_add_library` function is used to define a library. -At the least, it takes a target name, and the library's source files. +At the least, it takes a target name and the library's source files. vespa_add_library( [STATIC|OBJECT|INTERFACE|TEST] [SOURCES [source-file ...]] @@ -27,7 +27,7 @@ Parameter denoting that this is an object library. This parameter is optional. ### INTERFACE -Parameter denoting that this is an interface library, that is, a library producing no object files, for example a collection of headers. +Parameter denoting that this is an interface library, that is, a library producing no object files, for example, a collection of headers. This parameter is optional. ### TEST @@ -55,7 +55,7 @@ This parameter is optional. # `vespa_add_executable` The `vespa_add_executable` function is used to define an executable/application. -At the least, the function takes a target name, and the executable's source files. +At the least, the function takes a target name and the executable's source files. vespa_add_executable( [TEST] SOURCES [source-file ...]