Reorganize cmake gettext message output to ease debugging

This commit is contained in:
Giuseppe Bilotta 2011-07-21 15:16:59 +02:00
parent aa6506ce96
commit 767280577b
1 changed files with 8 additions and 8 deletions

View File

@ -7,8 +7,6 @@ endif(RUN_IN_PLACE)
if(USE_GETTEXT)
find_package(GettextLib REQUIRED)
if (GETTEXT_FOUND)
add_definitions( -DUSE_GETTEXT )
message(STATUS "gettext include path: ${GETTEXT_INCLUDE_DIR}")
message(STATUS "gettext msgfmt path: ${GETTEXT_MSGFMT}")
if(WIN32)
@ -16,9 +14,11 @@ if(USE_GETTEXT)
message(STATUS "gettext dll: ${GETTEXT_DLL}")
message(STATUS "gettext iconv dll: ${GETTEXT_ICONV_DLL}")
endif()
if (GETTEXT_FOUND)
add_definitions( -DUSE_GETTEXT )
message(STATUS "GetText enabled")
else()
message(ERROR "GetText enabled but not found, disabling")
message(STATUS "ERROR: GetText enabled but not found, disabling")
set(USE_GETTEXT FALSE)
endif(GETTEXT_FOUND)
else(USE_GETTEXT)