This commit is contained in:
Saleem Abdulrasool 2024-11-21 09:23:41 -05:00 committed by GitHub
commit 78599335f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,10 @@
import("//Meta/gn/build/libs/third_party.gni")
third_party_dependency("simdutf") {
libs = [ "simdutf" ]
if (current_os == "win") {
libs = [ "simdutf.lib" ]
} else {
libs = [ "simdutf" ]
}
extra_public_configs = [ "//Meta/gn/build:pic" ]
}