Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_wiidev.lua « make « actions « tests - github.com/windirstat/premake-4.x.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d766097690534cdfab71825b305318d2b414cf84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
--
-- tests/actions/make/test_wiidev.lua
-- Tests for Wii homebrew support in makefiles.
-- Copyright (c) 2011 Jason Perkins and the Premake project
--

	T.make_wiidev = { }
	local suite = T.make_wiidev
	local make = premake.make
	local cpp = premake.make.cpp

	local sln, prj, cfg

	function suite.setup()
		_ACTION = "gmake"

		sln = solution("MySolution")
		configurations { "Debug", "Release" }
		platforms { "WiiDev" }

		prj = project("MyProject")

		premake.bake.buildconfigs()
		cfg = premake.getconfig(prj, "Debug", "WiiDev")
	end


--
-- Make sure that the Wii-specific flags are passed to the tools.
--

	function suite.writesCorrectFlags()
		cpp.flags(cfg, premake.gcc)
		test.capture [[
  ALL_CPPFLAGS  += $(CPPFLAGS) -MMD -MP -I$(LIBOGC_INC) $(MACHDEP) -MP $(DEFINES) $(INCLUDES)
  ALL_CFLAGS    += $(CFLAGS) $(ALL_CPPFLAGS)
  ALL_CXXFLAGS  += $(CXXFLAGS) $(ALL_CFLAGS)
  ALL_RESFLAGS  += $(RESFLAGS) $(DEFINES) $(INCLUDES)
  		]]
	end

	function suite.writesCorrectLinkFlags()
		cpp.linker(cfg, premake.gcc)
		test.capture [[
  ALL_LDFLAGS   += $(LDFLAGS) -s -L$(LIBOGC_LIB) $(MACHDEP)
  		]]
	end


--
-- Make sure the dev kit include is written to each Wii build configuration.
--

	function suite.writesIncludeBlock()
		make.settings(cfg, premake.gcc)
		test.capture [[
  ifeq ($(strip $(DEVKITPPC)),)
    $(error "DEVKITPPC environment variable is not set")'
  endif
  include $(DEVKITPPC)/wii_rules'
		]]
	end