Files
ox_lib/fxmanifest.lua

49 lines
916 B
Lua
Raw Normal View History

2021-10-30 15:58:25 +11:00
--[[ FX Information ]]--
fx_version 'cerulean'
use_experimental_fxv2_oal 'yes'
2021-10-30 15:58:25 +11:00
lua54 'yes'
game 'gta5'
--[[ Resource Information ]]--
2022-02-28 00:48:36 +00:00
name 'ox_lib'
2021-10-30 15:58:25 +11:00
author 'Linden'
version '2.10.4'
license 'LGPL-3.0-or-later'
2022-02-28 00:48:36 +00:00
repository 'https://github.com/overextended/ox_lib'
2021-10-30 15:58:25 +11:00
description 'A library of shared functions to utilise in other resources.'
--[[ Manifest ]]--
2021-12-24 12:00:05 +11:00
dependencies {
'/server:5104',
2021-12-24 12:00:05 +11:00
'/onesync',
}
2021-10-30 15:58:25 +11:00
2022-03-13 22:30:57 +01:00
ui_page 'web/build/index.html'
2021-10-30 15:58:25 +11:00
files {
'init.lua',
'imports/**/client.lua',
'imports/**/shared.lua',
2022-03-13 22:30:57 +01:00
'web/build/index.html',
2022-04-29 05:56:41 +10:00
'web/build/**/*',
'locales/*.json',
}
2021-11-16 11:15:59 +11:00
shared_script 'resource/main.lua'
shared_scripts {
'resource/**/shared.lua',
'resource/**/shared/*.lua'
}
2021-11-16 11:15:59 +11:00
client_scripts {
'resource/**/client.lua',
'resource/**/client/*.lua'
2021-11-16 11:15:59 +11:00
}
server_scripts {
'resource/**/server.lua',
'resource/**/server/*.lua'
2021-12-24 12:00:05 +11:00
}