From 9b8b564ef57a25ff86aff67c8079e8f4562d5e90 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Thu, 14 May 2015 22:30:56 +0000 Subject: [PATCH] [CMAKE] Make sure WIN32 is defined for ARM builds svn path=/trunk/; revision=67732 --- reactos/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/CMakeLists.txt b/reactos/CMakeLists.txt index e1e45ea795b..afcee321c54 100644 --- a/reactos/CMakeLists.txt +++ b/reactos/CMakeLists.txt @@ -164,7 +164,7 @@ else() add_definitions(-D_M_AMD64 -D_AMD64_ -D__x86_64__ -D_WIN64) elseif(ARCH STREQUAL "arm") # _M_ARM is already defined by toolchain - add_definitions(-D_ARM_ -D__arm__) + add_definitions(-D_ARM_ -D__arm__ -DWIN32) if(SARCH STREQUAL "omap-zoom2") add_definitions(-D_ZOOM2_) endif()