From 4117631f750b060f944ecb8ad6ba5a19a8b4284b Mon Sep 17 00:00:00 2001 From: Zhaosheng Pan Date: Wed, 23 Sep 2020 21:50:25 +0800 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 94b0452..29dd58b 100644 --- a/README.md +++ b/README.md @@ -15,22 +15,22 @@ files. Use `FetchContent`: include(FetchContent) - FetchContent_Declare(naivedsp + FetchContent_Declare(libwav GIT_REPOSITORY "https://github.com/brglng/libwav.git" GIT_SHALLOW ON ) - FetchContent_MakeAvailable(naivedsp) + FetchContent_MakeAvailable(libwav) add_executable(yourprogram yourprogram.c) target_link_libraries(yourprogram wav::wav) Use `add_subdirectory`: - add_subdirectory(naivedsp) + add_subdirectory(libwav) add_executable(yourprogram yourprogram.c) target_link_libraries(yourprogram wav::wav) Use `find_package`: - find_package(naivedsp) + find_package(wav) add_executable(yourprogram yourprogram.c) target_link_libraries(yourprogram wav::wav)