Fix Windows build with WAF

This commit is contained in:
JusicP
2022-03-19 14:40:11 +02:00
parent b296444d0c
commit edbe1baceb
31 changed files with 361 additions and 126 deletions
+9 -2
View File
@@ -20,11 +20,18 @@ def build(bld):
'FontAmalgam.cpp',
'FontManager.cpp',
'FontEffects.cpp',
#'Win32Font.cpp', [$WIN32 && !$X360]
#'Win32Font_x360.cpp', [$X360]
#'osxfont.cpp', [$OSXALL]
'linuxfont.cpp' # [$LINUXALL]
]
if bld.env.DEST_OS == 'win32':
source += [
'Win32Font.cpp'
]
else:
source += [
'linuxfont.cpp'
]
includes = [
'.',