-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBackend.cproj
51 lines (51 loc) · 1.88 KB
/
Backend.cproj
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
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{22107F9D-B6BC-48F3-BA75-67A1619529C2}</ProjectGuid>
<Compiler>
<Compiler ctype="GccCompiler" />
</Compiler>
<Language>C</Language>
<Target>Bin</Target>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug</OutputPath>
<Externalconsole>true</Externalconsole>
<OutputName>Backend</OutputName>
<CompileTarget>Bin</CompileTarget>
<DefineSymbols>DEBUG MONODEVELOP</DefineSymbols>
<SourceDirectory>.</SourceDirectory>
<Commandlineparameters>-lssl</Commandlineparameters>
<ExtraLinkerArguments>-lssl -lcrypto -lpthread</ExtraLinkerArguments>
<Includes>
<Includes>
<Include>${ProjectDir}</Include>
</Includes>
</Includes>
<LibPaths>
<LibPaths>
<LibPath>${ProjectDir}</LibPath>
</LibPaths>
</LibPaths>
<CustomCommands>
<CustomCommands>
<Command type="BeforeExecute" command="killall BackendServer || :" externalConsole="True" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release</OutputPath>
<Externalconsole>true</Externalconsole>
<OutputName>Backend</OutputName>
<CompileTarget>Bin</CompileTarget>
<OptimizationLevel>3</OptimizationLevel>
<DefineSymbols>MONODEVELOP</DefineSymbols>
<SourceDirectory>.</SourceDirectory>
</PropertyGroup>
<ItemGroup>
<Compile Include="backend.c" />
</ItemGroup>
</Project>