Skip to content

Commit 2268e53

Browse files
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.
1 parent cb32800 commit 2268e53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/blisp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ target_include_directories(blisp PRIVATE
2020
"${CMAKE_SOURCE_DIR}/include")
2121

2222
target_link_libraries(blisp PRIVATE
23-
argtable3
23+
argtable3::argtable3
2424
libblisp_static file_parsers)
2525

2626
if (WIN32)

0 commit comments

Comments
 (0)