From b2a0e6909d3816f3f43e16f7d5241f7f94b3ba50 Mon Sep 17 00:00:00 2001 From: Yili Zhao Date: Tue, 31 Mar 2020 21:44:46 +0800 Subject: [PATCH] Fix a typo --- 01-basic/C-static-library/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-basic/C-static-library/README.adoc b/01-basic/C-static-library/README.adoc index 49aff30..5f30a87 100644 --- a/01-basic/C-static-library/README.adoc +++ b/01-basic/C-static-library/README.adoc @@ -98,7 +98,7 @@ you use multiple libraries in your project. ## Linking a Library When creating an executable that will use your library you must tell the compiler -about the library. This can be done using the +target_link_library()+ function. +about the library. This can be done using the +target_link_libraries()+ function. [source,cmake] ----