mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 18:32:42 +01:00
20 lines
277 B
Lua
20 lines
277 B
Lua
-- Premake PSX module
|
|
-- By SoapyMan
|
|
|
|
local p = premake
|
|
|
|
if not p.modules.psx then
|
|
|
|
include ( "_preload.lua" )
|
|
|
|
require ("gmake")
|
|
p.modules.psx = {}
|
|
|
|
if _ACTION == "gmake" or _ACTION == "gmake2" then
|
|
configuration { "psx" }
|
|
system "psx"
|
|
end
|
|
end
|
|
|
|
return p.modules.psx
|