VS 2019 has no 32bit build
jgu222 opened this issue · 2 comments
jgu222 commented
Observed Behavior
On Windows 10, 64 bit, only has 64 bit build
Desired Behavior
Need to have 32bit build as well.
Steps to Reproduce
cd <root-clintercept>
mkdir _bin64
cmake -G "Visual Studio 16 2019" ..
cmake --build . --config RelWithDebInfo --target install
This will give 64 bit build. Note that the following has cmake error:
cmake -G "Visual Studio 16 2019 win32" ..
bashbaug commented
Hello!
I think you need to use the the -A
option to do this. See:
https://cmake.org/cmake/help/git-stage/generator/Visual%20Studio%2016%202019.html
jgu222 commented
Thanks.