mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 09:52:27 -04:00
Fix a small issue with debug python on windows
This commit is contained in:
parent
e518fe16b4
commit
c392ec8e8c
@ -1411,7 +1411,9 @@ if (COMPILER=="MSVC"):
|
||||
CopyAllFiles(GetOutputDir()+"/bin/", THIRDPARTYLIBS+"extras"+"/bin/")
|
||||
if (sys.platform.startswith("win")):
|
||||
if (PkgSkip("PYTHON")==0):
|
||||
pydll = "/" + SDK["PYTHONVERSION"].replace(".", "") + ".dll"
|
||||
pydll = "/" + SDK["PYTHONVERSION"].replace(".", "")
|
||||
if (GetOptimize() <= 2): pydll += "_d.dll"
|
||||
else: pydll += ".dll"
|
||||
CopyFile(GetOutputDir()+"/bin"+pydll, SDK["PYTHON"]+pydll)
|
||||
CopyTree(GetOutputDir()+"/python", SDK["PYTHON"])
|
||||
ConditionalWriteFile(GetOutputDir()+"/python/panda.pth", "..\n../bin\n")
|
||||
|
Loading…
x
Reference in New Issue
Block a user