@@ -195,7 +195,6 @@ if host_machine.system() in ['linux','darwin']
195
195
dependency ([' sdl2' ]),
196
196
dependency (' flac' ),
197
197
dependency (' minizip' ),
198
- dependency (' luajit' ),
199
198
dependency (' threads' ),
200
199
dependency (' liblz4' ),
201
200
dependency (' libpng' ),
@@ -211,8 +210,6 @@ if host_machine.system() in ['linux','darwin']
211
210
elif host_machine .system() == ' windows'
212
211
sdl2 = subproject (' SDL2-2.26.3' )
213
212
sdl2_dep = dependency (' sdl2' )
214
- luajit = subproject (' LuaJIT-2.1' )
215
- luajit_dep = dependency (' luajit' )
216
213
zlib = subproject (' zlib-ng-2.1.3' )
217
214
zlib_dep = dependency (' zlib' )
218
215
minizip = subproject (' minizip-ng-4.0.0' )
@@ -233,6 +230,8 @@ boost_dep = declare_dependency(include_directories: include_directories('externa
233
230
meson .override_dependency(' boost-175' , boost_dep)
234
231
install_rpath = prefix/ get_option (' fmod_dir' )
235
232
allegro_proj = subproject (' allegro 4.4.3.1-custom' )
233
+ luajit = subproject (' LuaJIT-2.1' )
234
+ luajit_dep = dependency (' luajit' )
236
235
allegro_dep = dependency (' allegro' )
237
236
loadpng_dep = dependency (' loadpng' )
238
237
luabind_proj = subproject (' luabind-0.7.1' )
@@ -241,7 +240,7 @@ raknet_proj = subproject('RakNet')
241
240
raknet_dep = dependency (' RakNet' )
242
241
tracy_proj = subproject (' tracy' )
243
242
tracy_dep = dependency (' tracy' )
244
- deps += [allegro_dep, loadpng_dep, raknet_dep, boost_dep, tracy_dep]
243
+ deps += [allegro_dep, luajit_dep, loadpng_dep, raknet_dep, boost_dep, tracy_dep]
245
244
246
245
#### Sources Setup ####
247
246
source_inc_dirs = []
0 commit comments