swh:1:snp:c7c108084bc0bf3d81436bf980b46e98bd338453
Raw File
Tip revision: b1463c3be9d326a19c897386068b770dfc3d8437 authored by Pascal de Bruijn on 21 July 2012, 10:43:22 UTC
upegelows: lens correction: properly deal with case where lens is known but camera not
Tip revision: b1463c3
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