aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindIntltool.cmake
diff options
context:
space:
mode:
authorRodney Dawes <rodney.dawes@canonical.com>2017-02-03 12:23:56 -0500
committerRobert Tari <robert@tari.in>2021-07-09 01:57:30 +0200
commit4baa615e7b9f371c634ec8b06d393da04f3bbcda (patch)
tree955f02c6a5b901760e01c2eeaf9183a3663f8907 /cmake/FindIntltool.cmake
parent579c0741ef9ad3ec2f7f0b1afc00f9bf77e6dd3f (diff)
downloadayatana-indicator-datetime-4baa615e7b9f371c634ec8b06d393da04f3bbcda.tar.gz
ayatana-indicator-datetime-4baa615e7b9f371c634ec8b06d393da04f3bbcda.tar.bz2
ayatana-indicator-datetime-4baa615e7b9f371c634ec8b06d393da04f3bbcda.zip
Use cmake-extras intltool module, and keep pot file in vcs.
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 69ffab9..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)
-