2022-02-28 00:48:36 +00:00
|
|
|
-- ox_lib
|
2021-10-30 15:58:25 +11:00
|
|
|
-- Copyright (C) 2021 Linden <https://github.com/thelindat>
|
|
|
|
|
|
|
|
|
|
-- This program is free software: you can redistribute it and/or modify
|
|
|
|
|
-- it under the terms of the GNU General Public License as published by
|
|
|
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
-- (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
-- This program is distributed in the hope that it will be useful,
|
|
|
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
-- GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
-- You should have received a copy of the GNU General Public License
|
|
|
|
|
-- along with this program. If not, see <https://www.gnu.org/licenses/gpl-3.0.html>
|
|
|
|
|
|
|
|
|
|
--[[ FX Information ]]--
|
|
|
|
|
fx_version 'cerulean'
|
|
|
|
|
use_fxv2_oal 'yes'
|
|
|
|
|
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'
|
2022-03-25 10:39:30 +00:00
|
|
|
version '2.1.0'
|
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.'
|
|
|
|
|
|
2022-02-28 16:30:58 +11:00
|
|
|
--[[ Manifest ]]--
|
2021-12-24 12:00:05 +11:00
|
|
|
dependencies {
|
2021-12-27 11:10:05 +11:00
|
|
|
'/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',
|
|
|
|
|
'web/build/**/*'
|
2021-11-14 02:03:19 +11:00
|
|
|
}
|
|
|
|
|
|
2021-11-16 11:15:59 +11:00
|
|
|
shared_script 'resource/main.lua'
|
|
|
|
|
|
2022-02-28 02:40:25 +00:00
|
|
|
shared_scripts {
|
|
|
|
|
'resource/**/shared.lua',
|
|
|
|
|
'resource/**/shared/*.lua'
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-16 11:15:59 +11:00
|
|
|
client_scripts {
|
2022-01-31 22:47:47 +11:00
|
|
|
'resource/**/client.lua',
|
|
|
|
|
'resource/**/client/*.lua'
|
2021-11-16 11:15:59 +11:00
|
|
|
}
|
|
|
|
|
|
2021-11-14 02:03:19 +11:00
|
|
|
server_scripts {
|
2022-01-31 22:47:47 +11:00
|
|
|
'resource/**/server.lua',
|
|
|
|
|
'resource/**/server/*.lua'
|
2021-12-24 12:00:05 +11:00
|
|
|
}
|
2021-12-27 11:10:05 +11:00
|
|
|
|
2022-02-28 00:48:36 +00:00
|
|
|
provide 'pe-lualib'
|