From dcbcb5d854652946e3d7e66984fcadd7d19b8721 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Mon, 25 Sep 2023 11:48:07 +0200 Subject: [PATCH] [fix] library name in CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 078f806de2..fec05bd3ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -154,7 +154,7 @@ endif() if(INCLUDE_SPLIT) file(GLOB libLC3plusSrcs "lib_lc3plus/*.c") file(GLOB libLC3plusHeaders "lib_lc3plus/*.h") - add_library(lc3plus ${libLC3plusSrcs} ${libLC3plusHeaders}) + add_library(lib_lc3plus ${libLC3plusSrcs} ${libLC3plusHeaders}) target_include_directories(lib_lc3plus PUBLIC lib_lc3plus) target_link_libraries(lib_lc3plus lib_com) # For including options.h, which is needed for instrumentation to work correctly if(WMOPS) -- GitLab