Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add module definition file, let vs2019 build correct binary via cmake
Configure for Windows 32 bit: 1. open 'x86 Native Tools Command Prompt for VS 2019', navigate to your source directory 2. configure with cmake: cmake -G "Visual Studio 16 2019" -A Win32 -DCMAKE_CONFIGURATION_TYPES=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/out32/hiredis/ . Configure for Windows 64 bit: 1. open 'x64 Native Tools Command Prompt for VS 2019', navigate to your source directory 2. configure with cmake: cmake -G "Visual Studio 16 2019" -DCMAKE_CONFIGURATION_TYPES=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/out64/hiredis/ . Finally, build & install: msbuild.exe /p:Configuration=RelWithDebInfo ALL_BUILD.vcxproj msbuild.exe /p:Configuration=RelWithDebInfo INSTALL.vcxproj
- Loading branch information