-
Notifications
You must be signed in to change notification settings - Fork 4
/
DeepGTAV.vcxproj
102 lines (102 loc) · 4.85 KB
/
DeepGTAV.vcxproj
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClCompile Include="DrivingMode.cpp" />
<ClCompile Include="LiDAR.cpp" />
<ClCompile Include="ScenarioMsg.cpp" />
<ClCompile Include="ScreenCapturer.cpp" />
<ClCompile Include="VisionNative.cpp" />
<ClCompile Include="Rewarders\GeneralRewarder.cpp" />
<ClCompile Include="Rewarders\LaneRewarder.cpp" />
<ClCompile Include="lib\main.cpp" />
<ClCompile Include="Scenario.cpp" />
<ClCompile Include="script.cpp" />
<ClCompile Include="Rewarders\SpeedRewarder.cpp" />
<ClCompile Include="Server.cpp" />
<ClCompile Include="lib\tinyxml2.cpp" />
<ClCompile Include="lib\utils.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="behaviorAnalys.hpp" />
<ClInclude Include="defaults.h" />
<ClInclude Include="DrivingMode.h" />
<ClInclude Include="LiDAR.h" />
<ClInclude Include="ScenarioMsg.h" />
<ClInclude Include="ScreenCapturer.h" />
<ClInclude Include="Task.hpp" />
<ClInclude Include="VisionNative.h" />
<ClInclude Include="Rewarders\Rewarder.h" />
<ClInclude Include="Rewarders\GeneralRewarder.h" />
<ClInclude Include="Rewarders\LaneRewarder.h" />
<ClInclude Include="Scenario.h" />
<ClInclude Include="lib\script.h" />
<ClInclude Include="Rewarders\SpeedRewarder.h" />
<ClInclude Include="Server.h" />
<ClInclude Include="lib\tinyxml2.h" />
<ClInclude Include="lib\utils.h" />
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{8D82F34A-1D64-465B-84B1-37F89AD3D20B}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>DeepGTAV</RootNamespace>
<ProjectName>DeepGTAV</ProjectName>
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
<TargetExt>.asi</TargetExt>
<OutDir>bin\$(Configuration)\</OutDir>
<IntDir>tmp\$(Configuration)\</IntDir>
<IncludePath>$(IncludePath)</IncludePath>
<LibraryPath>$(LibraryPath)</LibraryPath>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_WINSOCKAPI_;WIN32;NDEBUG;_WINDOWS;_USRDLL;NativeSpeedo_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FloatingPointModel>Fast</FloatingPointModel>
<AdditionalIncludeDirectories>E:\MyWorkingSpace\DriverBehavior\DeepGTAV\GTANativePlugin\eigen3;%(AdditionalIncludeDirectories);F:\eigen-git-mirror-master</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>false</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<AdditionalOptions>lib\ScriptHookV.lib %(AdditionalOptions)</AdditionalOptions>
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
<PostBuildEvent>
<Command>copy "bin\Release\*" "D:\GTAV\Grand Theft Auto V - 1.41\"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>