mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
Most linking errors dealt with on compiling on MinGW
This commit is contained in:
parent
854f39b4ab
commit
dd7052503e
6 changed files with 27 additions and 7 deletions
|
|
@ -646,7 +646,10 @@ else:
|
|||
# We allow warnings for third-party code that can be updated from upstream.
|
||||
ALLOW_COMPILER_WARNINGS = True
|
||||
|
||||
FINAL_LIBRARY = 'gkmedias'
|
||||
if CONFIG['GNU_CC']:
|
||||
FINAL_LIBRARY = 'xul'
|
||||
else:
|
||||
FINAL_LIBRARY = 'gkmedias'
|
||||
LOCAL_INCLUDES += [
|
||||
'skia/include/c',
|
||||
'skia/include/config',
|
||||
|
|
@ -697,6 +700,10 @@ if CONFIG['GKMEDIAS_SHARED_LIBRARY']:
|
|||
DEFINES['SKIA_DLL'] = 1
|
||||
DEFINES['GR_DLL'] = 1
|
||||
DEFINES['SK_FONT_HOST_USE_SYSTEM_SETTINGS'] = 1
|
||||
if CONFIG['GKMEDIAS_SHARED_LIBRARY'] and not CONFIG['GNU_CC']:
|
||||
DEFINES['SKIA_DLL'] = 1
|
||||
DEFINES['GR_DLL'] = 1
|
||||
DEFINES['SK_FONT_HOST_USE_SYSTEM_SETTINGS'] = 1
|
||||
|
||||
# We should autogenerate these SSE related flags.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue