How to build the lib with visual studio 2017
Hi guys,
I have seen there is a bat file to generate the visual studio project. But the project is only for the testing and has only one file. How could I get the visual project to compile the whole lib in visual studio 2017?
Thank you.. Regards Eric
Try creating another bat file in that directory, with the contents
cmake -DMATH_AVX=1 -DMATH_FMA3=1 -G "Visual Studio 15 2017 Win64" ..
That should create a static library.
Hi JUJ, Thank you for your reply. I have tried, it doesn't work. The following both cases create the same solution file under the directory: .\MathGeoLib-master\vs2017-64bit
cmake -DMATH_AVX=1 -DMATH_FMA3=1 -DMATH_TESTS_EXECUTABLE=0 -DFAIL_USING_EXCEPTIONS=1 -G "Visual Studio 15 2017 Win64" ..
cmake -DMATH_AVX=1 -DMATH_FMA3=1 -G "Visual Studio 15 2017 Win64" ..
Hi guys,
Has anyone tried to generate the solution file for visual studio?
Thank you.
Regards Eric