diff options
Diffstat (limited to 'lexilla/test/LexillaAccess.cxx')
-rw-r--r-- | lexilla/test/LexillaAccess.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexilla/test/LexillaAccess.cxx b/lexilla/test/LexillaAccess.cxx index ea62c9605..10e7675db 100644 --- a/lexilla/test/LexillaAccess.cxx +++ b/lexilla/test/LexillaAccess.cxx @@ -77,9 +77,9 @@ bool LoadLexilla([[maybe_unused]] std::filesystem::path path) { lexillaDL = ::LoadLibraryW(sharedLibrary.c_str()); #else #if defined(__APPLE__) - sharedLibrary.append("lexilla.dylib"); + sharedLibrary.append("liblexilla.dylib"); #else - sharedLibrary.append("lexilla.so"); + sharedLibrary.append("liblexilla.so"); #endif lexillaDL = dlopen(sharedLibrary.c_str(), RTLD_LAZY); #endif |