mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-24 15:38:54 -06:00
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;
|
|
}
|