File: FindMsgfmt.cmake

package info (click to toggle)
performous 1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 7,712 kB
  • ctags: 3,399
  • sloc: cpp: 16,764; ansic: 2,015; sh: 675; xml: 463; python: 355; makefile: 16
file content (16 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# - 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)

mark_as_advanced(Msgfmt_BIN)