Skip to content

Commit 6ba5527

Browse files
committed
Check only the root wxWidgets folder.
1 parent f3d8249 commit 6ba5527

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

installdepswin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def InstallwxWidgets (targetFolder, msBuildPath):
2727
wxWidgetsFolderPath = os.path.join (targetFolder, wxWidgetsName)
2828
wxWidgetsIncludeFolderPath = os.path.join (wxWidgetsFolderPath, 'include')
2929
wxWidgetsLibFolderPath = os.path.join (wxWidgetsFolderPath, 'lib', 'vc_x64_lib')
30-
if not os.path.exists (wxWidgetsIncludeFolderPath) or not os.path.exists (wxWidgetsLibFolderPath):
30+
if not os.path.exists (wxWidgetsFolderPath):
3131
DownloadFile (wxWidgetsZipUrl, wxWidgetsZipPath)
3232
UnzipFile (wxWidgetsZipPath, wxWidgetsFolderPath)
3333
solutionPath = os.path.join (wxWidgetsFolderPath, 'build', 'msw', 'wx_vc15.sln')

0 commit comments

Comments
 (0)