From 309aa50d48708b79e17a224a34a98cf0fa624ce6 Mon Sep 17 00:00:00 2001 From: Ronald <3665590+playgithub@users.noreply.github.com> Date: Wed, 30 Jun 2021 21:29:34 +0800 Subject: [PATCH] Update CMakeLists.txt typo --- 02-sub-projects/A-basic/subbinary/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/02-sub-projects/A-basic/subbinary/CMakeLists.txt b/02-sub-projects/A-basic/subbinary/CMakeLists.txt index 7f74e5b..36de880 100644 --- a/02-sub-projects/A-basic/subbinary/CMakeLists.txt +++ b/02-sub-projects/A-basic/subbinary/CMakeLists.txt @@ -3,8 +3,8 @@ project(subbinary) # Create the executable add_executable(${PROJECT_NAME} main.cpp) -# Link the static library from subproject1 using it's alias sub::lib1 -# Link the header only library from subproject2 using it's alias sub::lib2 +# Link the static library from subproject1 using its alias sub::lib1 +# Link the header only library from subproject2 using its alias sub::lib2 # This will cause the include directories for that target to be added to this project target_link_libraries(${PROJECT_NAME} sub::lib1