mirror of https://github.com/axmolengine/axmol.git
fixed test for Windows 10 CC_PLATFORM_WINRT
This commit is contained in:
parent
a16d51cad9
commit
494a7079d3
|
@ -1,6 +1,6 @@
|
||||||
#include "ExtensionsTest.h"
|
#include "ExtensionsTest.h"
|
||||||
#include "../testResource.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
|
// Window 10 UWP does not yet support CURL
|
||||||
#include "AssetsManagerExTest/AssetsManagerExTest.h"
|
#include "AssetsManagerExTest/AssetsManagerExTest.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue