How to set up compilation with Intel Fortran compiler on Windows correctly?

So I get CMake to detect the Fortran compiler, but when it generates the dependency list in the VS project it sets all of the Fortran and C++ targets to be ignored.

VS 2019, Intel Fortran compiler.

I am building them as part of an OBJECT library that has C, CXX, and Fortran sources.

I have all of the OBJECTS as dependencies to the main library target which is a shared library, which should force it to build all of the source inputs.

Any ideas?