Skip to content

Commit

Permalink
Fix linking with argtable3
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
JetbladeDevsStuff committed Dec 12, 2024
1 parent cb32800 commit 2268e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/blisp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2268e53

Please sign in to comment.