WinRT: Disable harmless (in our case) linker warning.
--- a/CMakeLists.txt Tue Jul 25 19:55:58 2017 -0400
+++ b/CMakeLists.txt Wed Jul 26 09:03:04 2017 -0400
@@ -158,7 +158,9 @@
set_target_properties(physfs-static PROPERTIES OUTPUT_NAME "physfs")
endif()
if(WINRT)
+ # Ignore LNK4264 warnings; we don't author any WinRT components, just consume them, so we're okay in a static library.
set_target_properties(physfs-static PROPERTIES VS_WINRT_COMPONENT True)
+ set_target_properties(physfs-static PROPERTIES STATIC_LIBRARY_FLAGS "/ignore:4264")
endif()
set(PHYSFS_LIB_TARGET physfs-static)