aboutsummaryrefslogtreecommitdiff
path: root/polly/cmake
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2015-03-30 17:54:01 +0000
committerTobias Grosser <tobias@grosser.es>2015-03-30 17:54:01 +0000
commit378e003748f00ff4e410fd02ae401283a06df277 (patch)
tree3b6af2cd0fd2dcdd28ead2f3757eea191fe5e854 /polly/cmake
parente704c4ffd97b6fe819e076038fd5b1ede59fe7c4 (diff)
downloadllvm-378e003748f00ff4e410fd02ae401283a06df277.zip
llvm-378e003748f00ff4e410fd02ae401283a06df277.tar.gz
llvm-378e003748f00ff4e410fd02ae401283a06df277.tar.bz2
Drop libpluto support
We do not have buildbots or anything that tests this functionality, hence it most likely bitrots. People interested to use this functionality can always recover it from svn history. llvm-svn: 233570
Diffstat (limited to 'polly/cmake')
-rw-r--r--polly/cmake/FindPluto.cmake19
1 files changed, 0 insertions, 19 deletions
diff --git a/polly/cmake/FindPluto.cmake b/polly/cmake/FindPluto.cmake
deleted file mode 100644
index 78d8563b8..0000000
--- a/polly/cmake/FindPluto.cmake
+++ /dev/null
@@ -1,19 +0,0 @@
-FIND_PATH(PLUTO_INCLUDE_DIR pluto/libpluto.h)
-
-FIND_LIBRARY(PLUTO_LIBRARY NAMES pluto)
-
-IF (PLUTO_INCLUDE_DIR AND PLUTO_LIBRARY)
- SET(PLUTO_FOUND TRUE)
-ENDIF (PLUTO_INCLUDE_DIR AND PLUTO_LIBRARY)
-
-
-IF (PLUTO_FOUND)
- IF (NOT PLUTO_FIND_QUIETLY)
- MESSAGE(STATUS "Found Pluto: ${PLUTO_LIBRARY}")
- ENDIF (NOT PLUTO_FIND_QUIETLY)
-ELSE (PLUTO_FOUND)
- IF (PLUTO_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could not find Pluto")
- ENDIF (PLUTO_FIND_REQUIRED)
-ENDIF (PLUTO_FOUND)
-