From 84662d3de9dd988792563479314892337169d7af Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Mon, 2 Dec 2013 01:02:17 +0000 Subject: [PATCH] [NTVDM] Compile NTVDM even on non-i386 architectures. svn path=/branches/ntvdm/; revision=61194 --- subsystems/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/subsystems/CMakeLists.txt b/subsystems/CMakeLists.txt index 52d10bc85fc..230e58c9ace 100644 --- a/subsystems/CMakeLists.txt +++ b/subsystems/CMakeLists.txt @@ -1,6 +1,4 @@ -if(ARCH STREQUAL "i386") - add_subdirectory(ntvdm) -endif() +add_subdirectory(ntvdm) add_subdirectory(win) add_subdirectory(win32)