How to deploy a Win32 API application as an executable

前端 未结 3 1362
忘掉有多难
忘掉有多难 2021-02-10 15:26

How can I deploy my Win32 application as an EXE application so that others (who don\'t have VC++ installed) can use it?

I am using VC++ 2010 on Windows 7.

3条回答
  •  北恋
    北恋 (楼主)
    2021-02-10 15:55

    Make sure you build in release mode. As Floris Velleman said, you're using unneeded libraries for standalone executable.

    For more information, you can check Compiler Options (MSDN).

提交回复
热议问题