Skip to content

Commit 827341b

Browse files
committed
fix missing variables
1 parent 44fc1a9 commit 827341b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

external/sources/allegro 4.4.3.1-custom/meson.build

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,12 @@ if compiler.get_argument_syntax() == 'gcc'
8484
else
8585
endif
8686
allegro_args = ['-DALLEGRO_NO_COMPATIBILITY']
87+
allegro_lib = []
88+
loadpng_lib = []
8789

8890
if not get_option('use_prebuilt_libraries') or host_machine.system() in ['darwin', 'linux']
89-
allegro_lib = static_library('allegro', sources: allegro_sources, include_directories: allegro_include, c_args: [c_args, allegro_defines])
90-
loadpng_lib = static_library('loadpng', sources: loadpng_sources, dependencies: loadpng_dependencies, include_directories: allegro_include)
91+
allegro = static_library('allegro', sources: allegro_sources, include_directories: allegro_include, c_args: [c_args, allegro_defines])
92+
loadpng = static_library('loadpng', sources: loadpng_sources, dependencies: loadpng_dependencies, include_directories: allegro_include)
9193
else
9294
allegro = []
9395
loadpng = []

0 commit comments

Comments
 (0)