<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Windows Compile in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/Windows-Compile/m-p/229332#M5375</link>
    <description>Thanks for the reply -- My config is the same as yours, But I found the problem. the program is set for the include dir using $(VSIncludeDir) is is set fot the VS 10 include dir. unfortunately that dir got messed up and most of the files were lost. I now can't re-install VS 10 because the update fail and roll back. To further compound the problem. the variable in VS 2013 is sat to the same defective path &amp;amp; I don't see any way to change a environmental macro in VS. &lt;BR /&gt;
&lt;BR /&gt;
I did try puting in a include to the 2013 include dir but I just get a lot of edit errors -- over 200 when I do that.&lt;BR /&gt;
&lt;BR /&gt;
Are there any vcxprof file available for VS2013?  I also have 2015 preview installed but VCIncludeDir is also set to point to MSVS 10.0\VC\ -- How do I change?</description>
    <pubDate>Wed, 10 Dec 2014 13:23:10 GMT</pubDate>
    <dc:creator>poco2013</dc:creator>
    <dc:date>2014-12-10T13:23:10Z</dc:date>
    <item>
      <title>Windows Compile</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Windows-Compile/m-p/229330#M5373</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;I’m having no success in trying to compile the API version 18, and ver. 18 examples under Windows using Visual Studio.&lt;BR /&gt;&lt;BR /&gt;I originally did compile those examples using Visual studio 2013 but remember I had to make some configuration changes. Unfortunately, I had to reinstall VS and lost those changes and now can’t remember them. Something, I think, about using or not using the precompiled header and turning off some fatal warnings and adding an extra include folder.&lt;BR /&gt;&lt;BR /&gt;At any rate, hoping someone has a set of configuration changes needed for the supplied vcxproj files. I do have the platform toolset set for VS 2010.&lt;BR /&gt;&lt;BR /&gt;BTW – the API works perfectly OOB in Yosemite and the new XCode update.&lt;/DIV&gt;</description>
      <pubDate>Tue, 01 Aug 2023 11:57:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Windows-Compile/m-p/229330#M5373</guid>
      <dc:creator>poco2013</dc:creator>
      <dc:date>2023-08-01T11:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Compile</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Windows-Compile/m-p/229331#M5374</link>
      <description>&lt;BLOCKQUOTE&gt;poco2013 wrote:&lt;BR /&gt;I’m having no success in trying to compile the API version 18, and ver. 18 examples under Windows using Visual Studio.&lt;/BLOCKQUOTE&gt;
Could you write down please your compiling errors? &lt;BR /&gt;
 &lt;BR /&gt;
The most important Visual Studio 2010 project settings: &lt;BR /&gt;
- Additional Include Directories: (all necessary subdirs of DevKits's Support directory)
&lt;PRE&gt;&amp;lt;AdditionalIncludeDirectories&amp;gt;..\..\Support\Inc;..\..\Support\Modules\GSRoot;..\..\Support\Modules\GSRoot\STL\imp;..\..\Support\Modules\GSUtils;..\..\Support\Modules\DGLib;..\..\Support\Modules\Geometry;..\..\Support\Modules\InputOutput;..\..\Support\Modules\UCLib;..\..\Support\Modules\GXImageBase;%(AdditionalIncludeDirectories)&amp;lt;/AdditionalIncludeDirectories&amp;gt;&lt;/PRE&gt; &lt;BR /&gt;
 &lt;BR /&gt;
- Preprocessor Definitions:
&lt;PRE&gt;&amp;lt;PreprocessorDefinitions&amp;gt;_ITERATOR_DEBUG_LEVEL=0;WIN32;_WINDOWS;_USRDLL;_STLP_DONT_FORCE_MSVC_LIB_NAME;%(PreprocessorDefinitions)&amp;lt;/PreprocessorDefinitions&amp;gt;&lt;/PRE&gt;
(don't forget to add _DEBUG definition also for Debug build mode)&lt;BR /&gt;
&lt;BR /&gt;
- Library Includes: (include all used LIB from Support\Modules\&amp;lt;ModuleName&amp;gt;\Win folder)
&lt;PRE&gt;&amp;lt;Library Include="..\..\Support\Lib\Win\ACAP_STAT.lib"&amp;gt;
  &amp;lt;FileType&amp;gt;Document&amp;lt;/FileType&amp;gt;
&amp;lt;/Library&amp;gt;
&amp;lt;Library Include="..\..\Support\Modules\DGLib\Win\DGImp.lib"&amp;gt;
  &amp;lt;FileType&amp;gt;Document&amp;lt;/FileType&amp;gt;
&amp;lt;/Library&amp;gt;
&amp;lt;Library Include="..\..\Support\Modules\GSRoot\Win\GSRootImp.lib"&amp;gt;
  &amp;lt;FileType&amp;gt;Document&amp;lt;/FileType&amp;gt;
&amp;lt;/Library&amp;gt;&lt;/PRE&gt;
Regards, &lt;BR /&gt;
Tibor</description>
      <pubDate>Wed, 10 Dec 2014 07:27:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Windows-Compile/m-p/229331#M5374</guid>
      <dc:creator>Tibor Lorantfy</dc:creator>
      <dc:date>2014-12-10T07:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Compile</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Windows-Compile/m-p/229332#M5375</link>
      <description>Thanks for the reply -- My config is the same as yours, But I found the problem. the program is set for the include dir using $(VSIncludeDir) is is set fot the VS 10 include dir. unfortunately that dir got messed up and most of the files were lost. I now can't re-install VS 10 because the update fail and roll back. To further compound the problem. the variable in VS 2013 is sat to the same defective path &amp;amp; I don't see any way to change a environmental macro in VS. &lt;BR /&gt;
&lt;BR /&gt;
I did try puting in a include to the 2013 include dir but I just get a lot of edit errors -- over 200 when I do that.&lt;BR /&gt;
&lt;BR /&gt;
Are there any vcxprof file available for VS2013?  I also have 2015 preview installed but VCIncludeDir is also set to point to MSVS 10.0\VC\ -- How do I change?</description>
      <pubDate>Wed, 10 Dec 2014 13:23:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Windows-Compile/m-p/229332#M5375</guid>
      <dc:creator>poco2013</dc:creator>
      <dc:date>2014-12-10T13:23:10Z</dc:date>
    </item>
  </channel>
</rss>

