swh:1:snp:c7c108084bc0bf3d81436bf980b46e98bd338453
Raw File
Tip revision: a1925d45b94a6204881bd6b3fe448bf58052e0f0 authored by johannes hanika on 15 February 2011, 10:56:56 UTC
build system changes for 0.8
Tip revision: a1925d4
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