-
Notifications
You must be signed in to change notification settings - Fork 0
/
act-nut-lib.vcxproj
85 lines (85 loc) · 3.76 KB
/
act-nut-lib.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="UserMacros">
<ProjectTitle>Act/Nut lib</ProjectTitle>
<ProjectURL>https://github.com/thpatch/Act-Nut-lib</ProjectURL>
</PropertyGroup>
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)'=='Debug'">
<Import Project="Debug.props" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)'=='Release'">
<Import Project="Release.props" />
</ImportGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{21DF27A2-2AC5-4C09-9687-1D391237C01D}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>act_nut_lib</RootNamespace>
<ProjectName>act_nut_lib</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v120_xp</PlatformToolset>
<OutDir>$(SolutionDir)bin\</OutDir>
<IntDir>$(SolutionDir)obj\$(ProjectName) $(Configuration) $(PlatformShortName)\</IntDir>
<TargetName>$(ProjectName)$(TargetSuffix)</TargetName>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<InlineFunctionExpansion>Disabled</InlineFunctionExpansion>
<AdditionalIncludeDirectories>$(ProjectDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<ObjectFileName>$(IntDir)/%(RelativeDir)/</ObjectFileName>
<PreprocessorDefinitions>_CRT_NONSTDC_NO_WARNINGS</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ModuleDefinitionFile>act_nut_lib.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<ItemGroup>
<ClCompile Include="Object.cpp" />
<ClCompile Include="Utils.cpp" />
<ClCompile Include="exports.cpp" />
<ClCompile Include="act\Object.cpp" />
<ClCompile Include="act\File.cpp" />
<ClCompile Include="act\Entry.cpp" />
<ClCompile Include="act\Entries.cpp" />
<ClCompile Include="nut\SQObject.cpp" />
<ClCompile Include="nut\SQComplexObjects.cpp" />
<ClCompile Include="nut\SQInstruction.cpp" />
<ClCompile Include="nut\SQFunctionProto.cpp" />
<ClCompile Include="nut\Stream.cpp" />
<ClInclude Include="Object.hpp" />
<ClInclude Include="Utils.hpp" />
<ClInclude Include="exports.hpp" />
<ClInclude Include="act\Object.hpp" />
<ClInclude Include="act\File.hpp" />
<ClInclude Include="act\Entry.hpp" />
<ClInclude Include="act\Entries.hpp" />
<ClInclude Include="nut\SQObject.hpp" />
<ClInclude Include="nut\SQComplexObjects.hpp" />
<ClInclude Include="nut\SQInstruction.hpp" />
<ClInclude Include="nut\SQFunctionProto.hpp" />
<ClInclude Include="nut\Stream.hpp" />
<None Include="act_nut_lib.def" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</Project>