libomptarget: Disable on Win32

It's not supported, and currently breaks the weekly LLVM snapshot
builds.

Differential Revision: https://reviews.llvm.org/D29801

llvm-svn: 294758
This commit is contained in:
Hans Wennborg 2017-02-10 17:13:28 +00:00
parent beda0f1923
commit 1155ad1bc8
1 changed files with 4 additions and 1 deletions

View File

@ -3,4 +3,7 @@ cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
set(OPENMP_LLVM_TOOLS_DIR "" CACHE PATH "Path to LLVM tools for testing")
add_subdirectory(runtime)
add_subdirectory(libomptarget)
if (NOT WIN32)
add_subdirectory(libomptarget)
endif()