Apple set the name of the python libs

Required to make RENDERDOC_RunFunctionalTests try to run on Apple
This commit is contained in:
Jake Turner
2021-03-26 05:48:54 +00:00
committed by Baldur Karlsson
parent e074c3aba0
commit ddd6d2f86f
+4
View File
@@ -879,6 +879,10 @@ extern "C" RENDERDOC_API int RENDERDOC_CC RENDERDOC_RunFunctionalTests(int pytho
// we don't care about pymalloc or not
rdcstr pythonlibs[] = {"libpython3.?m.so.1.0", "libpython3.?.so.1.0", "libpython3.?m.so",
"libpython3.?.so"};
#elif ENABLED(RDOC_APPLE)
const char *moduledir = "";
const char *modulename = "renderdoc.so";
rdcstr pythonlibs[] = {"libpython3.?.dylib"};
#else
const char *moduledir = "";
const char *modulename = "";