1
0
Эх сурвалжийг харах

COMP: Fix for support of VS 8.0 beta 2

Andy Cedilnik 20 жил өмнө
parent
commit
17da34e188

+ 1 - 1
Modules/CMakeVS8FindMake.cmake

@@ -1,5 +1,5 @@
 FIND_PROGRAM(CMAKE_MAKE_PROGRAM
-  NAMES VCExpress
+  NAMES devenv VCExpress
   PATHS
   [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VS;EnvironmentDirectory]
   [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup;Dbghelp_path]

+ 3 - 2
Source/MFCDialog/CMakeSetupDialog.cpp

@@ -1269,8 +1269,9 @@ int CMakeSetupDialog::CreateShortcut()
       }
     
     // Ensure that the string consists of ANSI characters.
-    WORD wsz[MAX_PATH]; 
-    MultiByteToWideChar(CP_ACP, 0, link_name, -1, wsz, MAX_PATH);
+    WORD wszAr[MAX_PATH]; 
+    LPWSTR wsz = (LPWSTR)wszAr;
+    MultiByteToWideChar(CP_ACP, 0, link_name, -1, (LPWSTR)(wsz), MAX_PATH);
 
     // Save the shortcut via the IPersistFile::Save member function.
     hres = ppf->Save(wsz, TRUE);