Using LibRaw.sln to build to support FujiFilm GFX 50S

I am using LibRaw.sln to build LibRaw but can't figure out what I need to change in order to support the new FujiFilm GFX 50S camera. I tried adding the Preprocessor define LIBRAW_OPENMP but that did not work - I get " Cannot unpack C:\CameraFilesTests\IN\Canon\MM8717_170913_08471.RAF: Input/output error"

Forums: 

LIBRAW_OPENMP define should

LIBRAW_OPENMP define should be defined only if you use OpenMP builds.

Fuji compressed decoder contains critical section. This section is implemented via

#pragma omp critical // --> if LIBRAW_OPENMP defined

and via own locking mechanics if OpenMP is not used.

-- Alex Tutubalin @LibRaw LLC