Skip to content

Commit

Permalink
fix the naming of the ftgl plugin file
Browse files Browse the repository at this point in the history
  • Loading branch information
iandol committed Dec 8, 2022
1 parent 0b84c80 commit 2dad4a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PsychSourceGL/Cohorts/FTGLTextRenderer/makeftglplugin.m
Expand Up @@ -29,8 +29,8 @@
if IsLinux
if Is64Bit
if IsARM
cmd='g++ -g -fPIC -I. -I/usr/include/ -I/usr/include/freetype2/ -L/usr/lib -pie -shared -Wl,-Bsymbolic -Wl,-Bsymbolic-functions -Wl,--version-script=linuxexportlist.txt -o libptbdrawtext_2_64.so.1 libptbdrawtext_ftgl.cpp qstringqcharemulation.cpp OGLFT.cpp -lGL -lGLU -lfontconfig -lfreetype';
name = 'libptbdrawtext_2_64.so.1';
cmd='g++ -g -fPIC -I. -I/usr/include/ -I/usr/include/freetype2/ -L/usr/lib -pie -shared -Wl,-Bsymbolic -Wl,-Bsymbolic-functions -Wl,--version-script=linuxexportlist.txt -o libptbdrawtext_ftgl_arm64.so.1 libptbdrawtext_ftgl.cpp qstringqcharemulation.cpp OGLFT.cpp -lGL -lGLU -lfontconfig -lfreetype';
name = 'libptbdrawtext_ftgl_arm64.so.1';
else
cmd='g++ -g -fPIC -I. -I/usr/include/ -I/usr/include/freetype2/ -L/usr/lib -pie -shared -Wl,-Bsymbolic -Wl,-Bsymbolic-functions -Wl,--version-script=linuxexportlist.txt -o libptbdrawtext_ftgl64.so.1 libptbdrawtext_ftgl.cpp qstringqcharemulation.cpp OGLFT.cpp -lGL -lGLU -lfontconfig -lfreetype';
name = 'libptbdrawtext_ftgl64.so.1';
Expand Down
Binary file not shown.

0 comments on commit 2dad4a9

Please sign in to comment.