Skip to content

Commit

Permalink
Fix win32 library name for freetype.
Browse files Browse the repository at this point in the history
Windows convention conveys to not add the lib prefix.
So CMake built windows libraries builds do not have the lib prefix.
  • Loading branch information
guillep committed Nov 19, 2020
1 parent acaf158 commit b7f3434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FreeType/FT2FFILibrary.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ FT2FFILibrary >> unixLibraryName [

{ #category : #'accessing platform' }
FT2FFILibrary >> win32LibraryName [
#('libfreetype.dll' 'libfreetype-6.dll')
#('freetype.dll' 'libfreetype.dll' 'libfreetype-6.dll')
detect: [ :each | (FileLocator vmDirectory / each) exists ]
ifFound: [ :each | ^ each ].

Expand Down

0 comments on commit b7f3434

Please sign in to comment.