From 2074f5813889680d32c784c3dbdb1bf41be1405f Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 31 Jul 2014 13:08:53 -0400 Subject: [PATCH] MSVC: Add system libs for WindowsPhone and WindowsStore Use the libraries that are added by default by the VS 2013 IDE for Windows Phone and Windows Store projects. --- Modules/Platform/Windows-MSVC.cmake | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Modules/Platform/Windows-MSVC.cmake b/Modules/Platform/Windows-MSVC.cmake index 9431e90a8..9d4aca2fc 100644 --- a/Modules/Platform/Windows-MSVC.cmake +++ b/Modules/Platform/Windows-MSVC.cmake @@ -165,7 +165,11 @@ if(WINCE) elseif(WINDOWS_PHONE OR WINDOWS_STORE) set(_FLAGS_C " /DUNICODE /D_UNICODE") set(_FLAGS_CXX " /DUNICODE /D_UNICODE /GR /EHsc") - set(CMAKE_C_STANDARD_LIBRARIES_INIT "") + if(WINDOWS_PHONE) + set(CMAKE_C_STANDARD_LIBRARIES_INIT "WindowsPhoneCore.lib RuntimeObject.lib PhoneAppModelHost.lib") + else() + set(CMAKE_C_STANDARD_LIBRARIES_INIT "kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib") + endif() else() set(_PLATFORM_DEFINES "/DWIN32")