mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 13:48:33 -05:00
c30d06b7e6
Fixes: #21271 Signed-off-by: Sibi Siddharthan <sibisiddharthan.github@gmail.com>
12 lines
178 B
C++
12 lines
178 B
C++
extern "C" {
|
|
#include <libintl.h>
|
|
}
|
|
|
|
int main()
|
|
{
|
|
// Check if we include the directory correctly and have no link errors
|
|
bindtextdomain("", "");
|
|
gettext("");
|
|
return 0;
|
|
}
|