mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
9164419c9c
Retrial of #3818. JIRA issue: CORE-16435 The font name is "Microsoft Sans Serif". This font is not Microsoft's font. This font was not a solution of CORE-16435 but we add this font as a side product of CORE-16435. - Add media/fonts/micross.ttf as "Microsoft Sans Serif" font. - The font height is 14%-shrinked from #3818. - Add media/fonts/doc/MicrosoftSansSerif/LICENSE_OFL.txt. - Modify CMakeLists.txt to add the font. - Improve "J" and "Q". Version: 3 License: SIL Open Font License 1.1
67 lines
1.5 KiB
CMake
67 lines
1.5 KiB
CMake
|
|
list(APPEND FONT_FILES
|
|
arial.ttf
|
|
arialbd.ttf
|
|
arialbi.ttf
|
|
ariali.ttf
|
|
ariblk.ttf
|
|
comic.ttf
|
|
comicbd.ttf
|
|
cour.ttf
|
|
courbd.ttf
|
|
courbi.ttf
|
|
couri.ttf
|
|
framd.ttf
|
|
framdit.ttf
|
|
FreeSans.ttf
|
|
FreeSansBold.ttf
|
|
FreeSansBoldOblique.ttf
|
|
FreeSansOblique.ttf
|
|
FSEX301.ttf
|
|
FSEX301-L2.ttf
|
|
georgia.ttf
|
|
georgiab.ttf
|
|
georgiai.ttf
|
|
georgiaz.ttf
|
|
lucon.ttf
|
|
Marlett.ttf
|
|
micross.ttf
|
|
pala.ttf
|
|
palab.ttf
|
|
palabi.ttf
|
|
palai.ttf
|
|
SourceSansPro-Regular.ttf
|
|
SourceSansPro-Bold.ttf
|
|
SourceSansPro-BoldIt.ttf
|
|
SourceSansPro-It.ttf
|
|
#ssee874.fon # to be added (CORE-16165 and CORE-16166)
|
|
#ssee1255.fon # to be added (CORE-16165 and CORE-16166)
|
|
#ssee1256.fon # to be added (CORE-16165 and CORE-16166)
|
|
#ssee1257.fon # to be added (CORE-16165 and CORE-16166)
|
|
#sserife.fon # to be added (CORE-16165 and CORE-16166)
|
|
#sserifeg.fon # to be added (CORE-16165 and CORE-16166)
|
|
#sserifer.fon # to be added (CORE-16165 and CORE-16166)
|
|
#sserifet.fon # to be added (CORE-16165 and CORE-16166)
|
|
symbol.ttf
|
|
tahoma.ttf
|
|
tahomabd.ttf
|
|
times.ttf
|
|
timesbd.ttf
|
|
timesbi.ttf
|
|
timesi.ttf
|
|
trebuc.ttf
|
|
trebucbd.ttf
|
|
trebucbi.ttf
|
|
trebucit.ttf
|
|
UniVGA16.ttf
|
|
verdanab.ttf
|
|
verdanaz.ttf
|
|
verdanai.ttf
|
|
verdana.ttf
|
|
#vgaoem.fon # to be added (CORE-17327)
|
|
wingding.ttf)
|
|
|
|
foreach(item ${FONT_FILES})
|
|
add_cd_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/${item}" DESTINATION reactos/Fonts FOR all)
|
|
endforeach(item)
|