[llvm] r208225 - [CMake] Add build rules for llvm-PerfectShuffle utility

Alexey Samsonov samsonov at google.com
Wed May 7 09:54:00 PDT 2014


Author: samsonov
Date: Wed May  7 11:54:00 2014
New Revision: 208225

URL: http://llvm.org/viewvc/llvm-project?rev=208225&view=rev
Log:
[CMake] Add build rules for llvm-PerfectShuffle utility

Added:
    llvm/trunk/utils/PerfectShuffle/CMakeLists.txt
Modified:
    llvm/trunk/CMakeLists.txt

Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=208225&r1=208224&r2=208225&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Wed May  7 11:54:00 2014
@@ -498,6 +498,7 @@ add_subdirectory(lib)
 if( LLVM_INCLUDE_UTILS )
   add_subdirectory(utils/FileCheck)
   add_subdirectory(utils/FileUpdate)
+  add_subdirectory(utils/PerfectShuffle)
   add_subdirectory(utils/count)
   add_subdirectory(utils/not)
   add_subdirectory(utils/llvm-lit)

Added: llvm/trunk/utils/PerfectShuffle/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/PerfectShuffle/CMakeLists.txt?rev=208225&view=auto
==============================================================================
--- llvm/trunk/utils/PerfectShuffle/CMakeLists.txt (added)
+++ llvm/trunk/utils/PerfectShuffle/CMakeLists.txt Wed May  7 11:54:00 2014
@@ -0,0 +1,3 @@
+add_llvm_utility(llvm-PerfectShuffle
+  PerfectShuffle.cpp
+  )





More information about the llvm-commits mailing list