rename TestCpp to cpp-tests, TestLua to lua-tests in VS projects.

This commit is contained in:
James Chen 2014-03-12 15:03:35 +08:00
parent ca27bc4d6f
commit dd87df1cbc
10 changed files with 17 additions and 17 deletions

View File

@ -11,7 +11,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libchipmunk", "..\external\
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libExtensions", "..\extensions\proj.win32\libExtensions.vcxproj", "{21B2C324-891F-48EA-AD1A-5AE13DE12E28}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestCpp", "..\tests\cpp-tests\proj.win32\TestCpp.vcxproj", "{76A39BB2-9B84-4C65-98A5-654D86B86F2A}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpp-tests", "..\tests\cpp-tests\proj.win32\cpp-tests.vcxproj", "{76A39BB2-9B84-4C65-98A5-654D86B86F2A}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libCocosBuilder", "..\cocos\editor-support\cocosbuilder\proj.win32\libCocosBuilder.vcxproj", "{811C0DAB-7B96-4BD3-A154-B7572B58E4AB}"
EndProject
@ -25,7 +25,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libLocalStorage", "..\cocos
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblua", "..\cocos\scripting\lua-bindings\proj.win32\liblua.vcxproj", "{DDC3E27F-004D-4DD4-9DD3-931A013D2159}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestLua", "..\tests\lua-tests\project\proj.win32\TestLua.win32.vcxproj", "{4E6A7A0E-DDD8-4BAA-8B22-C964069364ED}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lua-tests", "..\tests\lua-tests\project\proj.win32\lua-tests.win32.vcxproj", "{4E6A7A0E-DDD8-4BAA-8B22-C964069364ED}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libGUI", "..\cocos\ui\proj.win32\libGUI.vcxproj", "{7E06E92C-537A-442B-9E4A-4761C84F8A1A}"
EndProject

View File

@ -42,7 +42,7 @@ END
// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDR_MAINFRAME ICON "res\\TestLua.ico"
IDR_MAINFRAME ICON "res\\lua-tests.ico"
/////////////////////////////////////////////////////////////////////////////
//
@ -67,12 +67,12 @@ BEGIN
BLOCK "040904B0"
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "TestLua Module\0"
VALUE "FileDescription", "lua-tests Module\0"
VALUE "FileVersion", "1, 0, 0, 1\0"
VALUE "InternalName", "TestLua\0"
VALUE "InternalName", "lua-tests\0"
VALUE "LegalCopyright", "Copyright \0"
VALUE "OriginalFilename", "TestLua.exe\0"
VALUE "ProductName", "TestLua Module\0"
VALUE "OriginalFilename", "lua-tests.exe\0"
VALUE "ProductName", "lua-tests Module\0"
VALUE "ProductVersion", "1, 0, 0, 1\0"
END
END

View File

@ -12,7 +12,7 @@
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{4E6A7A0E-DDD8-4BAA-8B22-C964069364ED}</ProjectGuid>
<ProjectName>TestLua</ProjectName>
<ProjectName>lua-tests</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
@ -95,11 +95,11 @@
<MkTypLibCompatible>false</MkTypLibCompatible>
<TargetEnvironment>Win32</TargetEnvironment>
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<HeaderFileName>TestLua.h</HeaderFileName>
<InterfaceIdentifierFileName>TestLua_i.c</InterfaceIdentifierFileName>
<ProxyFileName>TestLua_p.c</ProxyFileName>
<HeaderFileName>lua-tests.h</HeaderFileName>
<InterfaceIdentifierFileName>lua-tests_i.c</InterfaceIdentifierFileName>
<ProxyFileName>lua-tests_p.c</ProxyFileName>
<GenerateStublessProxies>true</GenerateStublessProxies>
<TypeLibraryName>$(IntDir)/TestLua.tlb</TypeLibraryName>
<TypeLibraryName>$(IntDir)/lua-tests.tlb</TypeLibraryName>
<DllDataFileName>
</DllDataFileName>
</Midl>
@ -149,11 +149,11 @@ xcopy /Y /Q "$(EngineRoot)external\websockets\prebuilt\win32\*.*" "$(OutDir)"</C
<MkTypLibCompatible>false</MkTypLibCompatible>
<TargetEnvironment>Win32</TargetEnvironment>
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<HeaderFileName>TestLua.h</HeaderFileName>
<InterfaceIdentifierFileName>TestLua_i.c</InterfaceIdentifierFileName>
<ProxyFileName>TestLua_p.c</ProxyFileName>
<HeaderFileName>lua-tests.h</HeaderFileName>
<InterfaceIdentifierFileName>lua-tests_i.c</InterfaceIdentifierFileName>
<ProxyFileName>lua-tests_p.c</ProxyFileName>
<GenerateStublessProxies>true</GenerateStublessProxies>
<TypeLibraryName>$(IntDir)/TestLua.tlb</TypeLibraryName>
<TypeLibraryName>$(IntDir)/lua-tests.tlb</TypeLibraryName>
<DllDataFileName>
</DllDataFileName>
</Midl>

View File

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -1,6 +1,6 @@
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by TestLua.RC
// Used by lua-tests.RC
//
#define IDS_PROJNAME 100