fixed test for Windows 10 CC_PLATFORM_WINRT

This commit is contained in:
Dale Stammen 2015-05-29 09:35:53 -07:00
parent a16d51cad9
commit 494a7079d3
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#include "ExtensionsTest.h"
#include "../testResource.h"
#if CC_TARGET_PLATFORM == CC_PLATFORM_WINRT && _MSC_VER < 1900
#if (CC_TARGET_PLATFORM != CC_PLATFORM_WINRT) || (CC_TARGET_PLATFORM == CC_PLATFORM_WINRT && _MSC_VER < 1900)
// Window 10 UWP does not yet support CURL
#include "AssetsManagerExTest/AssetsManagerExTest.h"
#endif