I have been using EIGEN to solve systems of equation. the only way I was successful to compile my code is by using /CLR. When I try to build my project.I noticed that in order for my exe to work on other pc, I need to build it using /MT (not DLL). problem they are not compatible. if I remove /CLR, my project wont compile, and if I leave the DLL, my exe works on other pc but gives unrealistic value.
Can someone advise on what to do. This is my first program I write. I am a mechanical engineer solving equation, please bear with me.
Ok I just search in the web, but I found that I can not build a windows form application without /CLR.
I am not sure if my target machine will have redistributed vc. is there any way to have my exe along with some dll instead? I often see this with small programs.