You didn't state what kind of build environment you are using on Windows.
So find below a short description how i built the 32-bit version of json library on Windows 10 using cmake 3.14.3 and Visual Studio 2015. CMake supports several generators for Visual Studio as well as MinGW (see CMake documentation).
- Open command window (cmd.exe) change to root directory of json-c library source.
- Setup build configuration for 32 bit target in directory "build" using command line "cmake -G "Visual Studio 14 2015" -A Win32 -B build"
- Open command window for Visual Studio 2015 x86 environment (link at start menu) and change to build directory created during previous step.
- Run "msbuild json-c.sln" to build Debug version of json-c dynamic library
- Run "msbuild json-c.sln /p:Configuration=Release" to build Release version of json-c dynamic library
After that you should be able to add the built library to your project.