[CMake] Add build rules for llvm-PerfectShuffle utility
authorAlexey Samsonov <samsonov@google.com>
Wed, 7 May 2014 16:54:00 +0000 (16:54 +0000)
committerAlexey Samsonov <samsonov@google.com>
Wed, 7 May 2014 16:54:00 +0000 (16:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208225 91177308-0d34-0410-b5e6-96231b3b80d8

CMakeLists.txt
utils/PerfectShuffle/CMakeLists.txt [new file with mode: 0644]

index 6f5bc80544b286bf1b365ca8b0cdc335fb287c1a..9ec3e33ad9fefdd152029396d1ca2d98418e5933 100644 (file)
@@ -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)
diff --git a/utils/PerfectShuffle/CMakeLists.txt b/utils/PerfectShuffle/CMakeLists.txt
new file mode 100644 (file)
index 0000000..ed70760
--- /dev/null
@@ -0,0 +1,3 @@
+add_llvm_utility(llvm-PerfectShuffle
+  PerfectShuffle.cpp
+  )