aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindIntltool.cmake
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2013-12-05 13:17:17 +0000
committerTarmac <Unknown>2013-12-05 13:17:17 +0000
commite8a7320e285d9feb6665c10efea8094ce306c213 (patch)
tree2b3452ff268b0587ac694e5a94eb1a6e2df91cc8 /cmake/FindIntltool.cmake
parent60a6771131c386ba2490a87ddcc0095ce83c31ba (diff)
parentd3788f7be049eb0a7c6fe5c720a15d88f6b6d21b (diff)
downloadayatana-indicator-session-e8a7320e285d9feb6665c10efea8094ce306c213.tar.gz
ayatana-indicator-session-e8a7320e285d9feb6665c10efea8094ce306c213.tar.bz2
ayatana-indicator-session-e8a7320e285d9feb6665c10efea8094ce306c213.zip
drop unused cmake file, it refears to geary and doesn't seem useful there.
Approved by Ted Gould, PS Jenkins bot.
Diffstat (limited to 'cmake/FindIntltool.cmake')
-rw-r--r--cmake/FindIntltool.cmake23
1 files changed, 0 insertions, 23 deletions
diff --git a/cmake/FindIntltool.cmake b/cmake/FindIntltool.cmake
deleted file mode 100644
index 45318c4..0000000
--- a/cmake/FindIntltool.cmake
+++ /dev/null
@@ -1,23 +0,0 @@
-# FindIntltool.cmake
-#
-# Jim Nelson <jim@yorba.org>
-# Copyright 2012 Yorba Foundation
-
-find_program (INTLTOOL_MERGE_EXECUTABLE intltool-merge)
-
-if (INTLTOOL_MERGE_EXECUTABLE)
- set (INTLTOOL_MERGE_FOUND TRUE)
-else (INTLTOOL_MERGE_EXECUTABLE)
- set (INTLTOOL_MERGE_FOUND FALSE)
-endif (INTLTOOL_MERGE_EXECUTABLE)
-
-if (INTLTOOL_MERGE_FOUND)
- macro (INTLTOOL_MERGE_DESKTOP desktop_id po_dir)
- add_custom_target (geary.desktop ALL
- ${INTLTOOL_MERGE_EXECUTABLE} --desktop-style ${CMAKE_SOURCE_DIR}/${po_dir}
- ${CMAKE_CURRENT_SOURCE_DIR}/${desktop_id}.desktop.in ${desktop_id}.desktop
- )
- install (FILES ${CMAKE_CURRENT_BINARY_DIR}/geary.desktop DESTINATION /usr/share/applications)
- endmacro (INTLTOOL_MERGE_DESKTOP desktop_id po_dir)
-endif (INTLTOOL_MERGE_FOUND)
-