diff options
| -rw-r--r-- | openmp/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/openmp/CMakeLists.txt b/openmp/CMakeLists.txt index 35b6f6c6fd0..b8662ba9cfb 100644 --- a/openmp/CMakeLists.txt +++ b/openmp/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() |

