From ef1c074e6d0e9888988bb0d89590e0ff160e8bcd Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Thu, 5 Mar 2015 14:22:56 -0700 Subject: [PATCH] nulldrv: build it on Linux It compiles! --- icd/CMakeLists.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/icd/CMakeLists.txt b/icd/CMakeLists.txt index 74d2414..ecc2bb6 100644 --- a/icd/CMakeLists.txt +++ b/icd/CMakeLists.txt @@ -13,8 +13,7 @@ else() endif() add_subdirectory(common) -if (WIN32) - add_subdirectory(nulldrv) -else() +add_subdirectory(nulldrv) +if (NOT WIN32) add_subdirectory(intel) endif() -- 2.7.4