I had the same problem as here fatal error C1034: windows.h: no include path set
I typed vcvars32.bat
and that solved my problem but I want to link some 64-bit .lib files and when I do:
cl main.cpp xxxlib.lib
I get:
warning LNK4272: library machine type 'x64' conflict with target machine type 'x86'
Is it because I use the vcvars32.bat
is 32 bits? Where can I find the 64 bit version?
Thanks