aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexilla/test
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2020-05-17 11:39:57 +1000
committerNeil <nyamatongwe@gmail.com>2020-05-17 11:39:57 +1000
commitfdb6d781a14befca446ddb99e78fbb582ef26f77 (patch)
tree24f007c1e0a2f5500926728dba5defb5cdb46158 /lexilla/test
parenta2360c37c6374007ba2d6ce937862ce357485fec (diff)
downloadscintilla-mirror-fdb6d781a14befca446ddb99e78fbb582ef26f77.tar.gz
On Unix call shared object liblexilla instead of lexilla to match platform
convention.
Diffstat (limited to 'lexilla/test')
-rw-r--r--lexilla/test/LexillaAccess.cxx4
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