109 lines
2.3 KiB
Lua
Executable File
109 lines
2.3 KiB
Lua
Executable File
--
|
|
-- tests/actions/vstudio/vc2010/test_resource_compile.lua
|
|
-- Validate resource compiler settings in Visual Studio 2010 C/C++ projects.
|
|
-- Copyright (c) 2011-2013 Jason Perkins and the Premake project
|
|
--
|
|
|
|
local suite = test.declare("vs2010_resource_compiler")
|
|
local vc2010 = premake.vstudio.vc2010
|
|
local project = premake.project
|
|
|
|
|
|
--
|
|
-- Setup
|
|
--
|
|
|
|
local sln, prj
|
|
|
|
function suite.setup()
|
|
premake.escaper(premake.vstudio.vs2010.esc)
|
|
sln, prj = test.createsolution()
|
|
end
|
|
|
|
local function prepare()
|
|
local cfg = test.getconfig(prj, "Debug")
|
|
vc2010.resourceCompile(cfg)
|
|
end
|
|
|
|
|
|
--
|
|
-- Check the basic element structure with default settings.
|
|
--
|
|
|
|
function suite.defaultSettings()
|
|
prepare()
|
|
test.capture [[
|
|
<ResourceCompile>
|
|
</ResourceCompile>
|
|
]]
|
|
end
|
|
|
|
|
|
--
|
|
-- If defines are specified, the <PreprocessorDefinitions> element should be added.
|
|
--
|
|
|
|
function suite.preprocessorDefinitions_onDefines()
|
|
defines { "DEBUG" }
|
|
resdefines { "RESOURCES" }
|
|
prepare()
|
|
test.capture [[
|
|
<ResourceCompile>
|
|
<PreprocessorDefinitions>DEBUG;RESOURCES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
]]
|
|
end
|
|
|
|
|
|
--
|
|
-- If include directories are specified, the <AdditionalIncludeDirectories> should be added.
|
|
--
|
|
|
|
function suite.additionalIncludeDirs_onIncludeDirs()
|
|
includedirs { "include/lua" }
|
|
resincludedirs { "include/zlib" }
|
|
prepare()
|
|
test.capture [[
|
|
<ResourceCompile>
|
|
<AdditionalIncludeDirectories>include\lua;include\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
]]
|
|
end
|
|
|
|
|
|
--
|
|
-- Xbox 360 doesn't use the resource compiler.
|
|
--
|
|
|
|
function suite.skips_onXbox360()
|
|
system "Xbox360"
|
|
prepare()
|
|
test.isemptycapture()
|
|
end
|
|
|
|
|
|
--
|
|
-- Test special escaping for preprocessor definition with quotes.
|
|
--
|
|
|
|
function suite.preprocessorDefinitions_onDefinesEscaping()
|
|
defines { 'VERSION_STRING="1.0.0 (testing)"' }
|
|
prepare()
|
|
test.capture [[
|
|
<ResourceCompile>
|
|
<PreprocessorDefinitions>VERSION_STRING=\"1.0.0 (testing)\";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
]]
|
|
end
|
|
|
|
|
|
--
|
|
-- Test locale conversion to culture codes.
|
|
--
|
|
|
|
function suite.culture_en_US()
|
|
locale "en-US"
|
|
prepare()
|
|
test.capture [[
|
|
<ResourceCompile>
|
|
<Culture>0x0409</Culture>
|
|
]]
|
|
end
|