diff options
author | truebrain <truebrain@openttd.org> | 2011-12-19 21:05:46 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2011-12-19 21:05:46 +0000 |
commit | 2ae87e72131a8e88327dbb0b5b286accddafe05d (patch) | |
tree | ec755c0d0c31cbcb470d0df2625db8614efca6b2 /projects | |
parent | 9b6b2cabc187f3cb72a53d396418ab1b9ebd2933 (diff) | |
download | openttd-2ae87e72131a8e88327dbb0b5b286accddafe05d.tar.xz |
(svn r23634) -Add: support language files for GameScript (Rubidium)
Diffstat (limited to 'projects')
-rw-r--r-- | projects/openttd_vs100.vcxproj | 4 | ||||
-rw-r--r-- | projects/openttd_vs100.vcxproj.filters | 12 | ||||
-rw-r--r-- | projects/openttd_vs80.vcproj | 16 | ||||
-rw-r--r-- | projects/openttd_vs90.vcproj | 16 |
4 files changed, 48 insertions, 0 deletions
diff --git a/projects/openttd_vs100.vcxproj b/projects/openttd_vs100.vcxproj index 716a1ae30..20acbb0e5 100644 --- a/projects/openttd_vs100.vcxproj +++ b/projects/openttd_vs100.vcxproj @@ -358,6 +358,7 @@ <ClCompile Include="..\src\sprite.cpp" /> <ClCompile Include="..\src\spritecache.cpp" /> <ClCompile Include="..\src\station.cpp" /> + <ClCompile Include="..\src\strgen\strgen_base.cpp" /> <ClCompile Include="..\src\string.cpp" /> <ClCompile Include="..\src\strings.cpp" /> <ClCompile Include="..\src\subsidy.cpp" /> @@ -560,6 +561,7 @@ <ClInclude Include="..\src\station_type.h" /> <ClInclude Include="..\src\statusbar_gui.h" /> <ClInclude Include="..\src\stdafx.h" /> + <ClInclude Include="..\src\strgen\strgen.h" /> <ClInclude Include="..\src\string_func.h" /> <ClInclude Include="..\src\string_type.h" /> <ClInclude Include="..\src\strings_func.h" /> @@ -931,6 +933,8 @@ <ClInclude Include="..\src\game\game_instance.hpp" /> <ClCompile Include="..\src\game\game_scanner.cpp" /> <ClInclude Include="..\src\game\game_scanner.hpp" /> + <ClCompile Include="..\src\game\game_text.cpp" /> + <ClInclude Include="..\src\game\game_text.hpp" /> <ClInclude Include="..\src\script\api\script_accounting.hpp" /> <ClInclude Include="..\src\script\api\script_admin.hpp" /> <ClInclude Include="..\src\script\api\script_airport.hpp" /> diff --git a/projects/openttd_vs100.vcxproj.filters b/projects/openttd_vs100.vcxproj.filters index 10c88fbf4..fb0898f7c 100644 --- a/projects/openttd_vs100.vcxproj.filters +++ b/projects/openttd_vs100.vcxproj.filters @@ -303,6 +303,9 @@ <ClCompile Include="..\src\station.cpp"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\src\strgen\strgen_base.cpp"> + <Filter>Source Files</Filter> + </ClCompile> <ClCompile Include="..\src\string.cpp"> <Filter>Source Files</Filter> </ClCompile> @@ -909,6 +912,9 @@ <ClInclude Include="..\src\stdafx.h"> <Filter>Header Files</Filter> </ClInclude> + <ClInclude Include="..\src\strgen\strgen.h"> + <Filter>Header Files</Filter> + </ClInclude> <ClInclude Include="..\src\string_func.h"> <Filter>Header Files</Filter> </ClInclude> @@ -2022,6 +2028,12 @@ <ClInclude Include="..\src\game\game_scanner.hpp"> <Filter>Game Core</Filter> </ClInclude> + <ClCompile Include="..\src\game\game_text.cpp"> + <Filter>Game Core</Filter> + </ClCompile> + <ClInclude Include="..\src\game\game_text.hpp"> + <Filter>Game Core</Filter> + </ClInclude> <ClInclude Include="..\src\script\api\script_accounting.hpp"> <Filter>Script API</Filter> </ClInclude> diff --git a/projects/openttd_vs80.vcproj b/projects/openttd_vs80.vcproj index 0473d53ff..7f09ce3a2 100644 --- a/projects/openttd_vs80.vcproj +++ b/projects/openttd_vs80.vcproj @@ -703,6 +703,10 @@ > </File> <File + RelativePath=".\..\src\strgen\strgen_base.cpp" + > + </File> + <File RelativePath=".\..\src\string.cpp" > </File> @@ -1515,6 +1519,10 @@ > </File> <File + RelativePath=".\..\src\strgen\strgen.h" + > + </File> + <File RelativePath=".\..\src\string_func.h" > </File> @@ -3054,6 +3062,14 @@ RelativePath=".\..\src\game\game_scanner.hpp" > </File> + <File + RelativePath=".\..\src\game\game_text.cpp" + > + </File> + <File + RelativePath=".\..\src\game\game_text.hpp" + > + </File> </Filter> <Filter Name="Script API" diff --git a/projects/openttd_vs90.vcproj b/projects/openttd_vs90.vcproj index b8673f3f9..4960431ec 100644 --- a/projects/openttd_vs90.vcproj +++ b/projects/openttd_vs90.vcproj @@ -700,6 +700,10 @@ > </File> <File + RelativePath=".\..\src\strgen\strgen_base.cpp" + > + </File> + <File RelativePath=".\..\src\string.cpp" > </File> @@ -1512,6 +1516,10 @@ > </File> <File + RelativePath=".\..\src\strgen\strgen.h" + > + </File> + <File RelativePath=".\..\src\string_func.h" > </File> @@ -3051,6 +3059,14 @@ RelativePath=".\..\src\game\game_scanner.hpp" > </File> + <File + RelativePath=".\..\src\game\game_text.cpp" + > + </File> + <File + RelativePath=".\..\src\game\game_text.hpp" + > + </File> </Filter> <Filter Name="Script API" |