[Openmp-commits] [PATCH] Adding openmp project as a runtime project to projects/CMakeLists.txt

Jonathan Peyton jonathan.l.peyton at intel.com
Wed May 6 09:56:07 PDT 2015


Hi chandlerc,

We have just committed changes to our CMake system which makes it compatible for building as a project LLVM.  The changes here simply add it as a runtime project which offers convenient CMake control variables for the user.

Chandler, I chose you as the reviewer because the CODE_OWNERS.txt file indicated you were the owner of the CMake build system.

REPOSITORY
  rL LLVM

http://reviews.llvm.org/D9534

Files:
  projects/CMakeLists.txt

Index: projects/CMakeLists.txt
===================================================================
--- projects/CMakeLists.txt
+++ projects/CMakeLists.txt
@@ -6,6 +6,7 @@
   if(IS_DIRECTORY ${entry} AND EXISTS ${entry}/CMakeLists.txt)
     if((NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt) AND
        (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/dragonegg) AND
+       (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/openmp) AND
        (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxx))
       add_subdirectory(${entry})
     endif()
@@ -23,6 +24,7 @@
   if(NOT LLVM_BUILD_EXTERNAL_COMPILER_RT)
     add_llvm_external_project(compiler-rt)
   endif()
+  add_llvm_external_project(openmp)
 endif()
 
 add_llvm_external_project(dragonegg)

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D9534.25060.patch
Type: text/x-patch
Size: 773 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20150506/5c39cbef/attachment.bin>


More information about the Openmp-commits mailing list