2 Star 4 Fork 3

danel996 / AutoCAD-ObjectArx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
SymbolTable.vcxproj 6.60 KB
一键复制 编辑 原始数据 按行查看 历史
lysjq 提交于 2018-07-17 00:19 . Add CHatchUtil and CDimensionUtil
<?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="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ArxAppType>arx</ArxAppType>
<RDS>lys</RDS>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<CLRSupport>false</CLRSupport>
<UseOfMfc>Dynamic</UseOfMfc>
<!-- <UseOfAtl>false</UseOfAtl> -->
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
<UseDebugLibraries>true</UseDebugLibraries>
<WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<PropertyGroup Label="Globals">
<TargetName Condition="'$(RDS)'!=''">$(RDS)$(ProjectName)</TargetName>
<ProjectGuid>{F87873B0-2B5D-4D52-8FD5-BE1CDC50B2E3}</ProjectGuid>
<WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="Autodesk.arx-2019.props" />
</ImportGroup>
<PropertyGroup Label="Configuration">
<PlatformToolset Condition="'$(ArxSDKPlatform)'=='v90'">v90</PlatformToolset>
<PlatformToolset Condition="'$(ArxSDKPlatform)'=='v100'">v100</PlatformToolset>
<PlatformToolset Condition="'$(ArxSDKPlatform)'=='v110'">v110</PlatformToolset>
<PlatformToolset Condition="'$(ArxSDKPlatform)'=='v140'">v140</PlatformToolset>
<PlatformToolset Condition="'$(ArxSDKPlatform)'=='v141'">v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup />
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions Condition="'$(Platform)'=='x64'">_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(UseOfMfc)'=='Dynamic'">_AFXEXT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<!-- Added to avoid Narrow conversion warnings introduced in VS2015 /Wv:xx[.yy[.zzzzz], is CL version -->
<AdditionalOptions>/Wv:17.00.61030 %(AdditionalOptions)</AdditionalOptions>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Use</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Use</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Use</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Use</PrecompiledHeader>
</ClCompile>
<Link>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="acrxEntryPoint.cpp" />
<ClCompile Include="CBlockUtil.cpp" />
<ClCompile Include="CCircleUtil.cpp" />
<ClCompile Include="CDimensionUtil.cpp" />
<ClCompile Include="CDwgDatebaseUtil.cpp" />
<ClCompile Include="CEntityUtil.cpp" />
<ClCompile Include="CGetInputUtil.cpp" />
<ClCompile Include="CGetPointUtil.cpp" />
<ClCompile Include="CHatchUtil.cpp" />
<ClCompile Include="CIOUtil.cpp" />
<ClCompile Include="CJig.cpp" />
<ClCompile Include="CLayerUtil.cpp" />
<ClCompile Include="CLineUtil.cpp" />
<ClCompile Include="CPolylineUtil.cpp" />
<ClCompile Include="CStringUtil.cpp" />
<ClCompile Include="CTextFileUtil.cpp" />
<ClCompile Include="CTextUtil.cpp" />
<ClCompile Include="CViewUtil.cpp" />
<ClCompile Include="DocData.cpp" />
<ClCompile Include="StdAfx.cpp">
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="SymbolTable.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="CBlockUtil.h" />
<ClInclude Include="CCircleUtil.h" />
<ClInclude Include="CDimensionUtil.h" />
<ClInclude Include="CDwgDatebaseUtil.h" />
<ClInclude Include="CEntityUtil.h" />
<ClInclude Include="CGetInputUtil.h" />
<ClInclude Include="CGetPointUtil.h" />
<ClInclude Include="CHatchUtil.h" />
<ClInclude Include="CIOUtil.h" />
<ClInclude Include="CJig.h" />
<ClInclude Include="CLayerUtil.h" />
<ClInclude Include="CLineUtil.h" />
<ClInclude Include="CPolylineUtil.h" />
<ClInclude Include="CStringUtil.h" />
<ClInclude Include="CTextFileUtil.h" />
<ClInclude Include="CTextUtil.h" />
<ClInclude Include="CViewUtil.h" />
<ClInclude Include="DocData.h" />
<ClInclude Include="Resource.h" />
<ClInclude Include="StdAfx.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="SymbolTable.rc" />
</ItemGroup>
<ItemGroup>
<Text Include="ReadMe.txt" />
</ItemGroup>
<ItemGroup>
<None Include="Autodesk.arx-2019-net.props" />
<None Include="Autodesk.arx-2019.props" />
<None Include="crx.props" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
1
https://gitee.com/anheihb03dlj/AutoCAD-ObjectArx.git
git@gitee.com:anheihb03dlj/AutoCAD-ObjectArx.git
anheihb03dlj
AutoCAD-ObjectArx
AutoCAD-ObjectArx
master

搜索帮助