From 2268e535d48e112dfff37bd6e68166243ec3da8d Mon Sep 17 00:00:00 2001 From: Terence Noone Date: Sun, 3 Mar 2024 00:44:55 -0500 Subject: [PATCH] Fix linking with argtable3 CMake interpreted `argtable3` to mean add `-largtable3` rather than to use the imported argtable3 target. This worked when using the bundled library, but broke with native libraries. --- tools/blisp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/blisp/CMakeLists.txt b/tools/blisp/CMakeLists.txt index b271dc4..66cbb40 100644 --- a/tools/blisp/CMakeLists.txt +++ b/tools/blisp/CMakeLists.txt @@ -20,7 +20,7 @@ target_include_directories(blisp PRIVATE "${CMAKE_SOURCE_DIR}/include") target_link_libraries(blisp PRIVATE - argtable3 + argtable3::argtable3 libblisp_static file_parsers) if (WIN32)