This repository has been archived on 2022-12-23. You can view files and clone it, but cannot push or open issues or pull requests.
fuck-premake-old2/tests/actions/make/cpp/test_ps3.lua

39 lines
689 B
Lua
Raw Normal View History

--
-- tests/actions/make/cpp/test_ps3.lua
-- Tests for PS3 support in makefiles.
-- Copyright (c) 2012 Jason Perkins and the Premake project
--
T.make_ps3 = {}
local suite = T.make_ps3
local make = premake.make
local cpp = premake.make.cpp
local project = premake5.project
--
-- Setup
--
local sln, prj, cfg
function suite.setup()
sln, prj = test.createsolution()
system "ps3"
cfg = project.getconfig(prj, "Debug")
end
--
-- Make sure that the correct compilers are used.
--
function suite.usesCorrectCompilers()
cpp.toolconfig(cfg, premake.tools.gcc)
test.capture [[
CC = ppu-lv2-g++
CXX = ppu-lv2-g++
AR = ppu-lv2-ar
]]
end