Luau.Analyze.CLI must link pthreads on Linux. (#920)

This commit is contained in:
Andy Friesen 2023-05-05 15:41:46 -07:00 committed by GitHub
parent 8453570658
commit 0014905b69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -192,6 +192,7 @@ if(LUAU_BUILD_CLI)
find_library(LIBPTHREAD pthread)
if (LIBPTHREAD)
target_link_libraries(Luau.Repl.CLI PRIVATE pthread)
target_link_libraries(Luau.Analyze.CLI PRIVATE pthread)
endif()
endif()