forked from frida/frida-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrida-python-common.props
More file actions
43 lines (40 loc) · 2.78 KB
/
frida-python-common.props
File metadata and controls
43 lines (40 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ClCompile Include="src\_frida.c" />
</ItemGroup>
<ItemGroup>
<CustomBuild Include="frida\__init__.py">
<FileType>Document</FileType>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Installing frida package</Message>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Installing frida package</Message>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Installing frida package</Message>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Installing frida package</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">rmdir /S /Q $(OutDir)frida 2>NUL
mkdir $(OutDir)frida || exit 1
copy /B /Y "$(ProjectDir)frida\*.py" $(OutDir)frida || exit 1
echo. > $(IntDir)frida-package.stamp</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)frida-package.stamp</Outputs>
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(ProjectDir)frida\core.py</AdditionalInputs>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">rmdir /S /Q $(OutDir)frida 2>NUL
mkdir $(OutDir)frida || exit 1
copy /B /Y "$(ProjectDir)frida\*.py" $(OutDir)frida || exit 1
echo. > $(IntDir)frida-package.stamp</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)frida-package.stamp</Outputs>
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(ProjectDir)frida\core.py</AdditionalInputs>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">rmdir /S /Q $(OutDir)frida 2>NUL
mkdir $(OutDir)frida || exit 1
copy /B /Y "$(ProjectDir)frida\*.py" $(OutDir)frida || exit 1
echo. > $(IntDir)frida-package.stamp</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(IntDir)frida-package.stamp</Outputs>
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(ProjectDir)frida\core.py</AdditionalInputs>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">rmdir /S /Q $(OutDir)frida 2>NUL
mkdir $(OutDir)frida || exit 1
copy /B /Y "$(ProjectDir)frida\*.py" $(OutDir)frida || exit 1
echo. > $(IntDir)frida-package.stamp</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(IntDir)frida-package.stamp</Outputs>
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(ProjectDir)frida\core.py</AdditionalInputs>
</CustomBuild>
<None Include="frida\core.py" />
</ItemGroup>
</Project>