How to deploy a Win32 API application as an executable

前端 未结 3 1824
情书的邮戳
情书的邮戳 2021-02-10 15:11

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:51

    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).

提交回复
热议问题