diff --git a/CMakeLists.txt b/CMakeLists.txt index 35b6f6c..b8662ba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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()