Files
CMake/Tests/FindIntl/Test/main.cxx
Sibi Siddharthan c30d06b7e6 FindIntl: Add imported target
Fixes: #21271
Signed-off-by: Sibi Siddharthan <sibisiddharthan.github@gmail.com>
2020-10-13 15:11:40 -04:00

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;
}