Skip to content

Commit 3b90021

Browse files
committed
VS install files
1 parent ab463f6 commit 3b90021

35 files changed

+566
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
4+
<!-- http://msdn.microsoft.com/en-us/library/ms171458.aspx -->
5+
<PropertyGroup>
6+
<_ProjectFileVersion>18.2.0.1</_ProjectFileVersion>
7+
<_PropertySheetDisplayName>ObjectARX .Net</_PropertySheetDisplayName>
8+
<TargetExt>.dll</TargetExt>
9+
</PropertyGroup>
10+
11+
<ImportGroup Label="PropertySheets">
12+
</ImportGroup>
13+
14+
<PropertyGroup Label="Globals">
15+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> <!-- That will force Platform Toolset to vc9 in Visual Studio 2010 -->
16+
<RootNamespace>$(TargetName)</RootNamespace>
17+
</PropertyGroup>
18+
19+
<PropertyGroup>
20+
<ReferencePath>$(ArxSdkIncs);$(ReferencePath)</ReferencePath>
21+
</PropertyGroup>
22+
23+
<ItemDefinitionGroup>
24+
<!-- Copy of Microsoft.Cpp.ManagedExtensions.props (C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0) -->
25+
<ClCompile>
26+
<ExceptionHandling>Async</ExceptionHandling>
27+
<CompileAsManaged>true</CompileAsManaged>
28+
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
29+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
30+
<MinimalRebuild></MinimalRebuild>
31+
<!-- To defeat the arx.props -->
32+
<SmallerTypeCheck>false</SmallerTypeCheck>
33+
</ClCompile>
34+
<Link>
35+
<FixedBaseAddress>false</FixedBaseAddress>
36+
<AssemblyDebug Condition="'$(UseDebugLibraries)'=='true'">true</AssemblyDebug>
37+
</Link>
38+
</ItemDefinitionGroup>
39+
40+
<ItemGroup>
41+
<Reference Include="System" />
42+
<Reference Include="System.Data" />
43+
<Reference Include="System.Xml" />
44+
</ItemGroup>
45+
46+
</Project>

_Installs/Autodesk.arx-2012.props

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
4+
<!-- http://msdn.microsoft.com/en-us/library/ms171458.aspx -->
5+
<PropertyGroup>
6+
<_ProjectFileVersion>18.2.0.1</_ProjectFileVersion>
7+
<_PropertySheetDisplayName>ObjectARX 2012</_PropertySheetDisplayName>
8+
</PropertyGroup>
9+
10+
<PropertyGroup>
11+
<AcadDir Condition="'$(Platform)'=='x64'">C:\Program Files\Autodesk\AutoCAD 2012 - English\</AcadDir>
12+
<AcadDir Condition="'$(Platform)'=='Win32'">C:\Program Files (x86)\Autodesk\AutoCAD 2012 - English\</AcadDir>
13+
<ArxSdkDir>C:\ObjectARX\</ArxSdkDir>
14+
15+
<ArxSdkIncs Condition="'$(Platform)'=='Win32'">$(ArxSdkDir)\inc;$(ArxSdkDir)\inc-win32</ArxSdkIncs>
16+
<ArxSdkIncs Condition="'$(Platform)'=='x64'">$(ArxSdkDir)\inc;$(ArxSdkDir)\inc-x64</ArxSdkIncs>
17+
<ArxHlrIncs>$(ArxSdkDir)\utils\HlrApi\inc</ArxHlrIncs>
18+
<ArxAmodelerIncs>$(ArxSdkDir)\utils\amodeler\inc</ArxAmodelerIncs>
19+
<ArxBrepIncs>$(ArxSdkDir)\utils\brep\inc</ArxBrepIncs>
20+
<ArxAtilIncs>$(ArxSdkDir)\utils\Atil\Inc</ArxAtilIncs>
21+
22+
<ArxSdkLibs Condition="'$(Platform)'=='Win32'">$(ArxSdkDir)\lib-win32</ArxSdkLibs>
23+
<ArxSdkLibs Condition="'$(Platform)'=='x64'">$(ArxSdkDir)\lib-x64</ArxSdkLibs>
24+
<ArxHlrLibs>$(ArxSdkDir)\utils\HlrApi\lib-$(Platform)</ArxHlrLibs>
25+
<ArxAmodelerLibs>$(ArxSdkDir)\utils\amodeler\lib-$(Platform)</ArxAmodelerLibs>
26+
<ArxBrepLibs>$(ArxSdkDir)\utils\brep\lib-$(Platform)</ArxBrepLibs>
27+
<ArxAtilLibs>$(ArxSdkDir)\utils\Atil\Lib-$(Platform)</ArxAtilLibs>
28+
<ArxSDKVersion>18.2</ArxSDKVersion>
29+
<ArxSDKPlatform>v90</ArxSDKPlatform>
30+
</PropertyGroup>
31+
32+
<ImportGroup Label="PropertySheets">
33+
<Import Condition="'$(ArxAppType)'=='dbx' or '$(ArxAppType)'=='dbxnet'" Project="$(ArxSdkDir)\inc\dbx.props" />
34+
<Import Condition="'$(ArxAppType)'=='arx' or '$(ArxAppType)'=='arxnet'" Project="$(ArxSdkDir)\inc\arx.props" />
35+
<Import Condition="'$(Configuration)'=='Release'" Project="$(ArxSdkDir)\inc\rxsdk_Releasecfg.props" />
36+
<Import Condition="'$(Configuration)'=='Debug'" Project="$(ArxSdkDir)\inc\rxsdk_Debugcfg.props" />
37+
<Import Condition="'$(ArxAppType)'=='dbxnet' or '$(ArxAppType)'=='arxnet'" Project="Autodesk.arx-2012-net.props" />
38+
</ImportGroup>
39+
40+
<PropertyGroup>
41+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> <!-- That will force Platform Toolset to vc9 in Visual Studio 2010 -->
42+
</PropertyGroup>
43+
44+
<PropertyGroup>
45+
<!-- ExecutablePath>$(ExecutablePath)</ExecutablePath -->
46+
<IncludePath>$(ArxSdkIncs);$(ArxHlrIncs);$(ArxAmodelerIncs);$(ArxBrepIncs);$(ArxAtilIncs);$(IncludePath)</IncludePath>
47+
<ReferencePath>$(ArxSdkIncs);$(ReferencePath)</ReferencePath>
48+
<LibraryPath>$(ArxSdkLibs);$(ArxHlrLibs);$(ArxAmodelerLibs);$(ArxBrepLibs);$(ArxLibIncs);$(LibraryPath)</LibraryPath>
49+
<!-- SourcePath>$(SourcePath)</SourcePath -->
50+
<!-- ExcludePath>$(ExcludePath)</ExcludePath -->
51+
</PropertyGroup>
52+
53+
<PropertyGroup>
54+
<!-- Local Windows debugger -->
55+
<LocalDebuggerDebuggerType>Auto</LocalDebuggerDebuggerType>
56+
<!-- LocalDebuggerCommand is defined into an empty $(TargetPath) for the property page, it is later redefined to its proper value. -->
57+
<LocalDebuggerCommand Condition="'$(AcadDir)' != ''">$(AcadDir)\acad.exe</LocalDebuggerCommand>
58+
<LocalDebuggerWorkingDirectory>$(ProjectDir)</LocalDebuggerWorkingDirectory>
59+
<!-- LocalDebuggerMergeEnvironment>true</LocalDebuggerMergeEnvironment -->
60+
<!-- LocalDebuggerAttach>False</LocalDebuggerAttach -->
61+
<!-- LocalDebuggerSQLDebugging>False</LocalDebuggerSQLDebugging -->
62+
</PropertyGroup>
63+
64+
<ItemDefinitionGroup>
65+
<Midl>
66+
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
67+
<TypeLibraryName>$(IntDir)$(TargetName).tlb</TypeLibraryName>
68+
<HeaderFileName>%(Filename)_i.h</HeaderFileName>
69+
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
70+
</Midl>
71+
<ClCompile>
72+
<PreprocessorDefinitions Condition="'$(ArxAppType)'=='dbx' or '$(ArxAppType)'=='dbxnet'">_DBXAPP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
73+
<PreprocessorDefinitions Condition="'$(ArxAppType)'=='arx' or '$(ArxAppType)'=='arxnet'">_ACRXAPP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
74+
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
75+
<AdditionalUsingDirectories>$(ArxSdkDir)\inc-$(Platform);%(AdditionalUsingDirectories)</AdditionalUsingDirectories>
76+
</ClCompile>
77+
<ResourceCompile>
78+
<PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
79+
<AdditionalIncludeDirectories>$(IntDir)</AdditionalIncludeDirectories>
80+
</ResourceCompile>
81+
<Link>
82+
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
83+
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
84+
<TargetMachine Condition="'$(Platform)'=='Win32'">MachineX86</TargetMachine>
85+
<TargetMachine Condition="'$(Platform)'=='x64'">MachineX64</TargetMachine>
86+
</Link>
87+
</ItemDefinitionGroup>
88+
89+
</Project>
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
4+
<!-- http://msdn.microsoft.com/en-us/library/ms171458.aspx -->
5+
<PropertyGroup>
6+
<_ProjectFileVersion>19.0.0.1</_ProjectFileVersion>
7+
<_PropertySheetDisplayName>ObjectARX .Net</_PropertySheetDisplayName>
8+
<TargetExt>.dll</TargetExt>
9+
</PropertyGroup>
10+
11+
<ImportGroup Label="PropertySheets">
12+
</ImportGroup>
13+
14+
<PropertyGroup Label="Globals">
15+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16+
<RootNamespace>$(TargetName)</RootNamespace>
17+
</PropertyGroup>
18+
19+
<PropertyGroup>
20+
<ReferencePath>$(ArxSdkIncs);$(ReferencePath)</ReferencePath>
21+
</PropertyGroup>
22+
23+
<ItemDefinitionGroup>
24+
<!-- Copy of Microsoft.Cpp.ManagedExtensions.props (C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0) -->
25+
<ClCompile>
26+
<ExceptionHandling>Async</ExceptionHandling>
27+
<CompileAsManaged>true</CompileAsManaged>
28+
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
29+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
30+
<MinimalRebuild></MinimalRebuild>
31+
<!-- To defeat the arx.props -->
32+
<SmallerTypeCheck>false</SmallerTypeCheck>
33+
</ClCompile>
34+
<Link>
35+
<FixedBaseAddress>false</FixedBaseAddress>
36+
<AssemblyDebug Condition="'$(UseDebugLibraries)'=='true'">true</AssemblyDebug>
37+
</Link>
38+
</ItemDefinitionGroup>
39+
40+
<ItemGroup>
41+
<Reference Include="System" />
42+
<Reference Include="System.Data" />
43+
<Reference Include="System.Xml" />
44+
</ItemGroup>
45+
46+
</Project>

_Installs/Autodesk.arx-2013.props

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
4+
<!-- http://msdn.microsoft.com/en-us/library/ms171458.aspx -->
5+
<PropertyGroup>
6+
<_ProjectFileVersion>19.0.0.1</_ProjectFileVersion>
7+
<_PropertySheetDisplayName>ObjectARX 2013</_PropertySheetDisplayName>
8+
</PropertyGroup>
9+
10+
<PropertyGroup>
11+
<AcadDir Condition="'$(Platform)'=='x64'">C:\Program Files\Autodesk\AutoCAD 2013\</AcadDir>
12+
<AcadDir Condition="'$(Platform)'=='Win32'">C:\Program Files (x86)\Autodesk\AutoCAD 2013\</AcadDir>
13+
<ArxSdkDir>C:\ObjectARX\</ArxSdkDir>
14+
15+
<ArxSdkIncs Condition="'$(Platform)'=='Win32'">$(ArxSdkDir)\inc;$(ArxSdkDir)\inc-win32</ArxSdkIncs>
16+
<ArxSdkIncs Condition="'$(Platform)'=='x64'">$(ArxSdkDir)\inc;$(ArxSdkDir)\inc-x64</ArxSdkIncs>
17+
<ArxHlrIncs>$(ArxSdkDir)\utils\HlrApi\inc</ArxHlrIncs>
18+
<ArxAmodelerIncs>$(ArxSdkDir)\utils\amodeler\inc</ArxAmodelerIncs>
19+
<ArxBrepIncs>$(ArxSdkDir)\utils\brep\inc</ArxBrepIncs>
20+
<ArxAtilIncs>$(ArxSdkDir)\utils\Atil\Inc</ArxAtilIncs>
21+
22+
<ArxSdkLibs Condition="'$(Platform)'=='Win32'">$(ArxSdkDir)\lib-win32</ArxSdkLibs>
23+
<ArxSdkLibs Condition="'$(Platform)'=='x64'">$(ArxSdkDir)\lib-x64</ArxSdkLibs>
24+
<ArxHlrLibs>$(ArxSdkDir)\utils\HlrApi\lib-$(Platform)</ArxHlrLibs>
25+
<ArxAmodelerLibs>$(ArxSdkDir)\utils\amodeler\lib-$(Platform)</ArxAmodelerLibs>
26+
<ArxBrepLibs>$(ArxSdkDir)\utils\brep\lib-$(Platform)</ArxBrepLibs>
27+
<ArxAtilLibs>$(ArxSdkDir)\utils\Atil\Lib-$(Platform)</ArxAtilLibs>
28+
<ArxSDKVersion>19.0</ArxSDKVersion>
29+
<ArxSDKPlatform>v100</ArxSDKPlatform>
30+
</PropertyGroup>
31+
32+
<ImportGroup Label="PropertySheets">
33+
<Import Condition="'$(ArxAppType)'=='dbx' or '$(ArxAppType)'=='dbxnet'" Project="$(ArxSdkDir)\inc\dbx.props" />
34+
<Import Condition="'$(ArxAppType)'=='arx' or '$(ArxAppType)'=='arxnet'" Project="$(ArxSdkDir)\inc\arx.props" />
35+
<Import Condition="'$(Configuration)'=='Release'" Project="$(ArxSdkDir)\inc\rxsdk_Releasecfg.props" />
36+
<Import Condition="'$(Configuration)'=='Debug'" Project="$(ArxSdkDir)\inc\rxsdk_Debugcfg.props" />
37+
<Import Condition="'$(ArxAppType)'=='dbxnet' or '$(ArxAppType)'=='arxnet'" Project="Autodesk.arx-2013-net.props" />
38+
</ImportGroup>
39+
40+
<PropertyGroup>
41+
<!-- ExecutablePath>$(ExecutablePath)</ExecutablePath -->
42+
<IncludePath>$(ArxSdkIncs);$(ArxHlrIncs);$(ArxAmodelerIncs);$(ArxBrepIncs);$(ArxAtilIncs);$(IncludePath)</IncludePath>
43+
<ReferencePath>$(ArxSdkIncs);$(ReferencePath)</ReferencePath>
44+
<LibraryPath>$(ArxSdkLibs);$(ArxHlrLibs);$(ArxAmodelerLibs);$(ArxBrepLibs);$(ArxLibIncs);$(LibraryPath)</LibraryPath>
45+
<!-- SourcePath>$(SourcePath)</SourcePath -->
46+
<!-- ExcludePath>$(ExcludePath)</ExcludePath -->
47+
</PropertyGroup>
48+
49+
<PropertyGroup>
50+
<!-- Local Windows debugger -->
51+
<LocalDebuggerDebuggerType>Auto</LocalDebuggerDebuggerType>
52+
<!-- LocalDebuggerCommand is defined into an empty $(TargetPath) for the property page, it is later redefined to its proper value. -->
53+
<LocalDebuggerCommand Condition="'$(AcadDir)' != ''">$(AcadDir)\acad.exe</LocalDebuggerCommand>
54+
<LocalDebuggerWorkingDirectory>$(ProjectDir)</LocalDebuggerWorkingDirectory>
55+
<!-- LocalDebuggerMergeEnvironment>true</LocalDebuggerMergeEnvironment -->
56+
<!-- LocalDebuggerAttach>False</LocalDebuggerAttach -->
57+
<!-- LocalDebuggerSQLDebugging>False</LocalDebuggerSQLDebugging -->
58+
</PropertyGroup>
59+
60+
<ItemDefinitionGroup>
61+
<Midl>
62+
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
63+
<TypeLibraryName>$(IntDir)$(TargetName).tlb</TypeLibraryName>
64+
<HeaderFileName>%(Filename)_i.h</HeaderFileName>
65+
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
66+
</Midl>
67+
<ClCompile>
68+
<PreprocessorDefinitions Condition="'$(ArxAppType)'=='dbx' or '$(ArxAppType)'=='dbxnet'">_DBXAPP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
69+
<PreprocessorDefinitions Condition="'$(ArxAppType)'=='arx' or '$(ArxAppType)'=='arxnet'">_ACRXAPP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
70+
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
71+
<AdditionalUsingDirectories>$(ArxSdkDir)\inc-$(Platform);%(AdditionalUsingDirectories)</AdditionalUsingDirectories>
72+
</ClCompile>
73+
<ResourceCompile>
74+
<PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
75+
<AdditionalIncludeDirectories>$(IntDir)</AdditionalIncludeDirectories>
76+
</ResourceCompile>
77+
<Link>
78+
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
79+
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
80+
<TargetMachine Condition="'$(Platform)'=='Win32'">MachineX86</TargetMachine>
81+
<TargetMachine Condition="'$(Platform)'=='x64'">MachineX64</TargetMachine>
82+
</Link>
83+
</ItemDefinitionGroup>
84+
85+
</Project>
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
4+
<!-- http://msdn.microsoft.com/en-us/library/ms171458.aspx -->
5+
<PropertyGroup>
6+
<_ProjectFileVersion>19.1.0.1</_ProjectFileVersion>
7+
<_PropertySheetDisplayName>ObjectARX .Net</_PropertySheetDisplayName>
8+
<TargetExt>.dll</TargetExt>
9+
</PropertyGroup>
10+
11+
<ImportGroup Label="PropertySheets">
12+
</ImportGroup>
13+
14+
<PropertyGroup Label="Globals">
15+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16+
<RootNamespace>$(TargetName)</RootNamespace>
17+
</PropertyGroup>
18+
19+
<PropertyGroup>
20+
<ReferencePath>$(ArxSdkIncs);$(ReferencePath)</ReferencePath>
21+
</PropertyGroup>
22+
23+
<ItemDefinitionGroup>
24+
<!-- Copy of Microsoft.Cpp.ManagedExtensions.props (C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0) -->
25+
<ClCompile>
26+
<ExceptionHandling>Async</ExceptionHandling>
27+
<CompileAsManaged>true</CompileAsManaged>
28+
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
29+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
30+
<MinimalRebuild></MinimalRebuild>
31+
<!-- To defeat the arx.props -->
32+
<SmallerTypeCheck>false</SmallerTypeCheck>
33+
</ClCompile>
34+
<Link>
35+
<FixedBaseAddress>false</FixedBaseAddress>
36+
<AssemblyDebug Condition="'$(UseDebugLibraries)'=='true'">true</AssemblyDebug>
37+
</Link>
38+
</ItemDefinitionGroup>
39+
40+
<ItemGroup>
41+
<Reference Include="System" />
42+
<Reference Include="System.Data" />
43+
<Reference Include="System.Xml" />
44+
</ItemGroup>
45+
46+
</Project>

0 commit comments

Comments
 (0)