swh:1:snp:c7c108084bc0bf3d81436bf980b46e98bd338453
Raw File
Tip revision: e7f813e61f277de4c3234a3288b6cfb1c5be7806 authored by johannes hanika on 04 March 2012, 06:44:25 UTC
made scripts work with release candidates.
Tip revision: e7f813e
FindMsgfmt.cmake
# - Try to find Msgfmt
# Once done, this will define
#
#  Msgfmt_FOUND - system has Gettext
#  Msgfmt_BIN - path to binary file

find_program(Msgfmt_BIN msgfmt)

if(Msgfmt_BIN)
	set(Msgfmt_FOUND 1)
else()
	set(Msgfmt_FOUND 0)
endif(Msgfmt_BIN)
back to top