How include *.winmd file in VS project with cmake?

I have already try:
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -AI\"C:/Path/to/winmd/file.winmd\"")
and try target_link_libraries:
target_link_libraries(${APP_TARGET_NAME} C:/Path/to/winmd/file.winmd
didn’t works.

In Visual Studio project of example the same winmd file attached in “References” section.