mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 11:31:07 +00:00
add freetype test
This commit is contained in:
parent
fe8a4bd38b
commit
66c444fd14
1 changed files with 11 additions and 0 deletions
11
test/freetype2.cpp
Normal file
11
test/freetype2.cpp
Normal file
|
@ -0,0 +1,11 @@
|
|||
#include <ft2build.h>
|
||||
#include FT_FREETYPE_H
|
||||
|
||||
int main()
|
||||
{
|
||||
FT_Library library;
|
||||
AEDI_EXPECT(FT_Init_FreeType(&library) == FT_Err_Ok);
|
||||
AEDI_EXPECT(FT_Done_FreeType(library) == FT_Err_Ok);
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue