[PATCH] D30470: [cmake] Include openmp with add_llvm_external_project

Pirama Arumuga Nainar via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 7 11:06:25 PST 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL297185: [cmake] Include openmp with add_llvm_external_project (authored by pirama).

Changed prior to commit:
  https://reviews.llvm.org/D30470?vs=90072&id=90890#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D30470

Files:
  llvm/trunk/projects/CMakeLists.txt


Index: llvm/trunk/projects/CMakeLists.txt
===================================================================
--- llvm/trunk/projects/CMakeLists.txt
+++ llvm/trunk/projects/CMakeLists.txt
@@ -10,7 +10,8 @@
        (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxxabi) AND
        (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libunwind) AND
        (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/test-suite) AND
-       (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/parallel-libs))
+       (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/parallel-libs) AND
+       (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/openmp))
       add_subdirectory(${entry})
     endif()
   endif()
@@ -35,3 +36,4 @@
 
 add_llvm_external_project(dragonegg)
 add_llvm_external_project(parallel-libs)
+add_llvm_external_project(openmp)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D30470.90890.patch
Type: text/x-patch
Size: 843 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170307/6b141ed6/attachment.bin>


More information about the llvm-commits mailing list