2026-02-14 21:17:28 -07:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2026-02-14 17:40:42 -07:00
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
|
<PropertyGroup Label="Configuration">
|
|
|
|
|
|
<PlatformToolset>v142</PlatformToolset>
|
|
|
|
|
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
|
<ProjectConfiguration Include="Release|x64">
|
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
|
<ProjectGuid>{C2321A03-0BA7-45B3-8740-ABD82B36B0BF}</ProjectGuid>
|
|
|
|
|
|
<Keyword>Win32Proj</Keyword>
|
|
|
|
|
|
<RootNamespace>python3</RootNamespace>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
|
|
<Import Project="..\..\win32\zoitechat.props" />
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetName>$(Python3Output)</TargetName>
|
|
|
|
|
|
<OutDir>$(ZoiteChatRel)plugins\</OutDir>
|
|
|
|
|
|
</PropertyGroup>
|
2026-02-15 22:50:37 -07:00
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
2026-02-14 17:40:42 -07:00
|
|
|
|
<ClCompile>
|
2026-02-15 22:40:12 -07:00
|
|
|
|
<PreprocessorDefinitions>WIN32;_WIN64;_AMD64_;NDEBUG;_WINDOWS;_USRDLL;PYTHON_EXPORTS;Py_NO_LINK_LIB;$(OwnFlags);%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2026-02-15 22:58:35 -07:00
|
|
|
|
<UndefinePreprocessorDefinitions>_DEBUG;Py_DEBUG;Py_REF_DEBUG;Py_TRACE_REFS;%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
2026-02-15 23:05:59 -07:00
|
|
|
|
<AdditionalOptions>/U_DEBUG /UPy_DEBUG /UPy_REF_DEBUG /UPy_TRACE_REFS %(AdditionalOptions)</AdditionalOptions>
|
|
|
|
|
|
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
2026-02-14 17:40:42 -07:00
|
|
|
|
<AdditionalIncludeDirectories>$(Glib);$(Python3Path)\include;..\..\src\common;$(ZoiteChatLib);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
|
</ClCompile>
|
|
|
|
|
|
<Link>
|
|
|
|
|
|
<ModuleDefinitionFile>python.def</ModuleDefinitionFile>
|
|
|
|
|
|
<AdditionalDependencies>"$(Python3Lib).lib";$(DepLibs);%(AdditionalDependencies)</AdditionalDependencies>
|
|
|
|
|
|
<AdditionalLibraryDirectories>$(DepsRoot)\lib;$(Python3Path)\libs;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
<PreBuildEvent>
|
|
|
|
|
|
<Command>"$(Python3Path)\python.exe" generate_plugin.py ..\..\src\common\zoitechat-plugin.h python.py "$(IntDir)python.c"</Command>
|
|
|
|
|
|
</PreBuildEvent>
|
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="generate_plugin.py" />
|
|
|
|
|
|
<None Include="zoitechat.py" />
|
|
|
|
|
|
<None Include="python.def" />
|
|
|
|
|
|
<None Include="python.py" />
|
|
|
|
|
|
<None Include="xchat.py" />
|
2026-02-24 15:56:29 -07:00
|
|
|
|
<None Include="hexchat.py" />
|
2026-02-14 17:40:42 -07:00
|
|
|
|
<None Include="_zoitechat.py" />
|
|
|
|
|
|
</ItemGroup>
|
2026-02-14 21:17:28 -07:00
|
|
|
|
<ItemGroup>
|
2026-02-14 17:40:42 -07:00
|
|
|
|
<ClCompile Include="$(IntDir)python.c" />
|
|
|
|
|
|
</ItemGroup>
|
2026-02-14 21:17:28 -07:00
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
|
</Project>
|
2026-02-15 22:40:12 -07:00
|
|
|
|
|
2026-02-15 22:50:37 -07:00
|
|
|
|
|
2026-02-15 22:58:35 -07:00
|
|
|
|
|
2026-02-15 23:05:59 -07:00
|
|
|
|
|