Thank-you for reply Athan,
My test program is very simple.
When I run the Build, the dialog at the bottom of the IDE does not indicate that an exe was created and I cannot find an exe in the source folder.
I have included my simple code and the text from the status window for the Build.
Any ideas?
Many thanks.
========= Begin Code ==========
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL, "Hello world!", "Note", MB_OK);
return 0;
}
========== End Code ==========
======== Begin Status from Compile/Link ========
Building C:\BU\Pellus_C_projects\Test03_Win64-Static-Lib\output\main.obj.
Building C:\BU\Pellus_C_projects\Test03_Win64-Static-Lib\Test03_Win64-Static-Lib.lib.
Done.
======== End Status from Compile/Link ========