Browse Source

* Executables also have the .exe extension on WinCE

git-svn-id: trunk@20049 -
joost 13 years ago
parent
commit
dce5279c15
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fpmkunit/src/fpmkunit.pp

+ 1 - 1
packages/fpmkunit/src/fpmkunit.pp

@@ -1950,7 +1950,7 @@ end;
 
 function AddProgramExtension(const ExecutableName: string; AOS : TOS): string;
 begin
-  if AOS in [Go32v2,Win32,Win64,OS2] then
+  if AOS in [Go32v2,Win32,Win64,Wince,OS2] then
     Result:=ExecutableName+ExeExt
   else
     Result:=ExecutableName;