mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
Allows resources importing ox_lib to ignore the "same license" condition. Does not apply to snippets copied from ox_lib into other resources.
49 lines
902 B
Lua
49 lines
902 B
Lua
--[[ FX Information ]]--
|
|
fx_version 'cerulean'
|
|
use_fxv2_oal 'yes'
|
|
lua54 'yes'
|
|
game 'gta5'
|
|
|
|
--[[ Resource Information ]]--
|
|
name 'ox_lib'
|
|
author 'Linden'
|
|
version '2.6.0'
|
|
license 'LGPL-3.0-or-later'
|
|
repository 'https://github.com/overextended/ox_lib'
|
|
description 'A library of shared functions to utilise in other resources.'
|
|
|
|
--[[ Manifest ]]--
|
|
dependencies {
|
|
'/server:5104',
|
|
'/onesync',
|
|
}
|
|
|
|
ui_page 'web/build/index.html'
|
|
|
|
files {
|
|
'init.lua',
|
|
'imports/**/client.lua',
|
|
'imports/**/shared.lua',
|
|
'web/build/index.html',
|
|
'web/build/**/*',
|
|
'locales/*.json',
|
|
}
|
|
|
|
shared_script 'resource/main.lua'
|
|
|
|
shared_scripts {
|
|
'resource/**/shared.lua',
|
|
'resource/**/shared/*.lua'
|
|
}
|
|
|
|
client_scripts {
|
|
'resource/**/client.lua',
|
|
'resource/**/client/*.lua'
|
|
}
|
|
|
|
server_scripts {
|
|
'resource/**/server.lua',
|
|
'resource/**/server/*.lua'
|
|
}
|
|
|