Simplified unit test to resolve path issues

This commit is contained in:
Sam Surtees 2019-11-07 00:53:52 +10:00
parent bd70a11d1c
commit b976d2f178

View File

@ -4,19 +4,10 @@
local suite = test.declare("gmake2_buildcommands")
local gmake2 = premake.modules.gmake2
premake.api.register {
name = 'test_libdir', -- this controls the targetdir for StaticLib projects.
scope = 'config',
kind = 'path',
tokens = true,
pathVars = true,
}
local wks, prj, cfg
function suite.setup()
wks = workspace("MyWorkspace")
test_libdir (path.join(_MAIN_SCRIPT_DIR, 'lib'))
configurations { "Debug", "Release" }
prj = test.createProject(wks)
end
@ -39,8 +30,8 @@ function suite.postbuildcommands()
postbuildcommands
{
"mkdir %{cfg.test_libdir}/www",
"mkdir %{cfg.test_libdir}/www"
"mkdir lib/www",
"mkdir lib/www"
}
prepare()