aboutsummaryrefslogtreecommitdiff
path: root/attic
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-01-13 16:58:30 +0400
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-01-13 17:03:21 +0400
commitb91b7efd32e2194bcae04a1d3953b4d6967cf7d6 (patch)
tree6ed895595bafe71844e5c29c37102c1e8a23a0d1 /attic
parentfe76108ad56f0481c80afbf42791a106d7b038ca (diff)
downloadextra-cmake-modules-b91b7efd32e2194bcae04a1d3953b4d6967cf7d6.tar.gz
extra-cmake-modules-b91b7efd32e2194bcae04a1d3953b4d6967cf7d6.tar.bz2
Remove FindMsgfmt
Authors should use FindGettext from cmake instead
Diffstat (limited to 'attic')
-rw-r--r--attic/modules/FindMsgfmt.cmake28
1 files changed, 0 insertions, 28 deletions
diff --git a/attic/modules/FindMsgfmt.cmake b/attic/modules/FindMsgfmt.cmake
deleted file mode 100644
index 47c61219..00000000
--- a/attic/modules/FindMsgfmt.cmake
+++ /dev/null
@@ -1,28 +0,0 @@
-# - Try to find msgfmt
-# Once done this will define
-#
-# MSGFMT_FOUND - system has msgfmt
-
-# Copyright (c) 2007, Montel Laurent <montel@kde.org>
-#
-# Redistribution and use is allowed according to the terms of the BSD license.
-# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
-
-### TODO: KDE4 needs msgfmt of version 0.15 or greater (cf. msgfmt --version )
-
-if(MSGFMT_EXECUTABLE)
- set(MSGFMT_FOUND TRUE)
-else(MSGFMT_EXECUTABLE)
-
- FIND_PROGRAM(MSGFMT_EXECUTABLE NAMES msgfmt)
- if (MSGFMT_EXECUTABLE)
- set(MSGFMT_FOUND TRUE)
- else (MSGFMT_EXECUTABLE)
- if (Msgfmt_FIND_REQUIRED)
- message(SEND_ERROR "Could NOT find msgfmt program")
- endif (Msgfmt_FIND_REQUIRED)
- endif (MSGFMT_EXECUTABLE)
- MARK_AS_ADVANCED(MSGFMT_EXECUTABLE)
-
-endif (MSGFMT_EXECUTABLE)
-