diff options
author | TingPing <tingping@tingping.se> | 2013-05-03 20:32:23 -0400 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2013-05-03 20:32:23 -0400 |
commit | 1f525a6f4b96b85d417401a5a0850bdd33184f51 (patch) | |
tree | 179f7770a729c4eda28716bb0b20e1ccf7bf2855 /win32/hexchat.props | |
parent | ce7eb026013d0cf7dbe76dffd83a3ac14a321689 (diff) | |
parent | ffa1ea735875442501e4f742cc3090903c5da001 (diff) |
Merge branch 'py3k' of git://github.com/TingPing/hexchat
Diffstat (limited to 'win32/hexchat.props')
-rw-r--r-- | win32/hexchat.props | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/win32/hexchat.props b/win32/hexchat.props index 5feac5ad..4da1a3ff 100644 --- a/win32/hexchat.props +++ b/win32/hexchat.props @@ -10,7 +10,8 @@ <YourGendefPath>c:\mozilla-build\gendef</YourGendefPath> <YourMsgfmtPath>c:\mozilla-build\msgfmt</YourMsgfmtPath> <YourPerlPath>c:\mozilla-build\perl-5.18</YourPerlPath> - <YourPythonPath>c:\mozilla-build\python-2.7</YourPythonPath> + <YourPython2Path>c:\mozilla-build\python-2.7</YourPython2Path> + <YourPython3Path>c:\mozilla-build\python-3.3</YourPython3Path> <!-- YOU SHOULDN'T TOUCH ANYTHING BELOW --> @@ -22,9 +23,12 @@ <PerlPath>$(YourPerlPath)\$(PlatformName)</PerlPath> <PerlLib>perl517</PerlLib> <PerlOutput>hcperl</PerlOutput> - <PythonPath>$(YourPythonPath)\$(PlatformName)</PythonPath> - <PythonLib>python27</PythonLib> - <PythonOutput>hcpython</PythonOutput> + <Python2Path>$(YourPython2Path)\$(PlatformName)</Python2Path> + <Python2Lib>python27</Python2Lib> + <Python2Output>hcpython2</Python2Output> + <Python3Path>$(YourPython3Path)\$(PlatformName)</Python3Path> + <Python3Lib>python33</Python3Lib> + <Python3Output>hcpython3</Python3Output> <Glib>$(DepsRoot)\include\glib-2.0;$(DepsRoot)\lib\glib-2.0\include;$(DepsRoot)\include\libxml2</Glib> <Gtk>$(DepsRoot)\include\gtk-2.0;$(DepsRoot)\lib\gtk-2.0\include;$(DepsRoot)\include\atk-1.0;$(DepsRoot)\include\cairo;$(DepsRoot)\include\pango-1.0;$(DepsRoot)\include\gdk-pixbuf-2.0</Gtk> <Pixmaps>png_ulist_voice "$(SolutionDir)\..\src\pixmaps\ulist_voice.png" png_ulist_halfop "$(SolutionDir)\..\src\pixmaps\ulist_halfop.png" png_ulist_op "$(SolutionDir)\..\src\pixmaps\ulist_op.png" png_ulist_owner "$(SolutionDir)\..\src\pixmaps\ulist_owner.png" png_ulist_founder "$(SolutionDir)\..\src\pixmaps\ulist_founder.png" png_ulist_netop "$(SolutionDir)\..\src\pixmaps\ulist_netop.png" png_tray_fileoffer "$(SolutionDir)\..\src\pixmaps\tray_fileoffer.png" png_tray_highlight "$(SolutionDir)\..\src\pixmaps\tray_highlight.png" png_tray_message "$(SolutionDir)\..\src\pixmaps\tray_message.png" png_tree_channel "$(SolutionDir)\..\src\pixmaps\tree_channel.png" png_tree_dialog "$(SolutionDir)\..\src\pixmaps\tree_dialog.png" png_tree_server "$(SolutionDir)\..\src\pixmaps\tree_server.png" png_tree_util "$(SolutionDir)\..\src\pixmaps\tree_util.png" png_book "$(SolutionDir)\..\src\pixmaps\book.png" png_hexchat "$(SolutionDir)\..\src\pixmaps\hexchat.png"</Pixmaps> @@ -82,7 +86,8 @@ copy "$(HexChatBin)hcexec.dll" "$(HexChatRel)\plugins" copy "$(HexChatBin)hcfishlim.dll" "$(HexChatRel)\plugins" copy "$(HexChatBin)hcmpcinfo.dll" "$(HexChatRel)\plugins" copy "$(HexChatBin)hcperl.dll" "$(HexChatRel)\plugins" -copy "$(HexChatBin)hcpython.dll" "$(HexChatRel)\plugins" +copy "$(HexChatBin)hcpython2.dll" "$(HexChatRel)\plugins" +copy "$(HexChatBin)hcpython3.dll" "$(HexChatRel)\plugins" copy "$(HexChatBin)hcupd.dll" "$(HexChatRel)\plugins" copy "$(HexChatBin)hcwinamp.dll" "$(HexChatRel)\plugins" copy "$(HexChatBin)hcsysinfo.dll" "$(HexChatRel)\plugins" |