swh:1:snp:c7c108084bc0bf3d81436bf980b46e98bd338453
Raw File
Tip revision: 6a83bc7afb3cd52894b16610def5d221ec343ba9 authored by johannes hanika on 29 March 2013, 08:48:54 UTC
darkroom: lock pixelpipes before destroying them.
Tip revision: 6a83bc7
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