swh:1:snp:c7c108084bc0bf3d81436bf980b46e98bd338453
Raw File
Tip revision: 77a2b895cd6001dddea28c4bcbf36234e95683f2 authored by Tobias Ellinghaus on 15 October 2015, 12:59:51 UTC
noiseprofile: Add Canon PowerShot S120
Tip revision: 77a2b89
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