在VS2005中将WinCE应用程序编译为PC应用程序

时间:2022-08-11 17:36:45

anyone knows a way how to compile a WinCE app as a PC app in VS2005. I want to change a standard MFC smart device app to an mfc windows app.

任何人都知道如何在VS2005中将WinCE应用程序编译为PC应用程序。我想将标准的MFC智能设备应用程序更改为mfc windows应用程序。

1 个解决方案

#1


You likely need to design your application to achieve this from the beginning.

您可能需要设计应用程序以从一开始就实现此目的。

We use our own framework (built directly on top of Win32) and have a single vcproj and sln that targets multiple platforms including Windows Mobile and Win32 on the desktop...

我们使用自己的框架(直接在Win32上构建)并拥有一个vcproj和sln,它面向桌面上的多个平台,包括Windows Mobile和Win32 ......

So I can vouch that it is achievable. The catch is that I had to hand code our vcproj files ;) Microsoft don't permit it in the wizards...

所以我可以保证它是可以实现的。问题是我不得不手工编写我们的vcproj文件;)微软不允许在向导中使用它...

Apparently MFC on CE is a lot closer to the desktop equivalent now, so that might make it a lot easier.

显然,CE上的MFC现在更接近桌面等价物,所以这可能会让它变得更容易。

#1


You likely need to design your application to achieve this from the beginning.

您可能需要设计应用程序以从一开始就实现此目的。

We use our own framework (built directly on top of Win32) and have a single vcproj and sln that targets multiple platforms including Windows Mobile and Win32 on the desktop...

我们使用自己的框架(直接在Win32上构建)并拥有一个vcproj和sln,它面向桌面上的多个平台,包括Windows Mobile和Win32 ......

So I can vouch that it is achievable. The catch is that I had to hand code our vcproj files ;) Microsoft don't permit it in the wizards...

所以我可以保证它是可以实现的。问题是我不得不手工编写我们的vcproj文件;)微软不允许在向导中使用它...

Apparently MFC on CE is a lot closer to the desktop equivalent now, so that might make it a lot easier.

显然,CE上的MFC现在更接近桌面等价物,所以这可能会让它变得更容易。