<?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: C++ add-on in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/C-add-on/m-p/388116#M983</link>
    <description>&lt;P&gt;haha so many newcomers. love it &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when the inclusions dont work, you have to asume that the cmake creation process did not went trough.&amp;nbsp;&lt;/P&gt;&lt;P&gt;i made a little step by step guide if you work with windows.&lt;/P&gt;&lt;P&gt;if you need help to bake the perfect cmake command, just write&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.graphisoft.com/t5/Developer-forum/developing-an-add-on-on-c/td-p/388005" target="_blank" rel="noopener"&gt;https://community.graphisoft.com/t5/Developer-forum/developing-an-add-on-on-c/td-p/388005&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i also had to start with c++ for the plugin development. a few tipps:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- test out low level stuff in a little console application,&amp;nbsp; easy stuff with objects and classes etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- realy realy check out the examples, they are very helpfull. look specially on the style of those. some have a very c-heavy coding style, others are more in line with java &amp;amp; c# i found the one with a high level coding language style the most usefull.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- it helped me a lot go trough examples like the maze generator step by step and comment evrything they do in my own words&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hope that helps a little&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jul 2023 06:21:15 GMT</pubDate>
    <dc:creator>Joel Buehler</dc:creator>
    <dc:date>2023-07-19T06:21:15Z</dc:date>
    <item>
      <title>C++ add-on</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/C-add-on/m-p/387997#M982</link>
      <description>&lt;P&gt;Hey everyone!&amp;nbsp; I'm trying to develop an add-on for archicad 26, I've downloaded devkit 26, vs code, archicad 26(demo version), cmake, and python. I tried to do the exact same thing from here:&amp;nbsp;&lt;A href="https://github.com/GRAPHISOFT/archicad-addon-cmake" target="_blank"&gt;https://github.com/GRAPHISOFT/archicad-addon-cmake&lt;/A&gt;&amp;nbsp;but after generating the project with the cmake list provided I encountered a problem with inclusions of&amp;nbsp;&lt;SPAN&gt;"APIEnvir.h",&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"ACAPinc.h",&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"ResourceIds.hpp",&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"DGModule.hpp".&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm new to c++ and archicad, so there may be some things I did not understand properly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If there are video materials or ready example add-on somewhere on github, I would be more than happy to have a look.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 14:00:36 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/C-add-on/m-p/387997#M982</guid>
      <dc:creator>Norik</dc:creator>
      <dc:date>2023-07-18T14:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: C++ add-on</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/C-add-on/m-p/388116#M983</link>
      <description>&lt;P&gt;haha so many newcomers. love it &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when the inclusions dont work, you have to asume that the cmake creation process did not went trough.&amp;nbsp;&lt;/P&gt;&lt;P&gt;i made a little step by step guide if you work with windows.&lt;/P&gt;&lt;P&gt;if you need help to bake the perfect cmake command, just write&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.graphisoft.com/t5/Developer-forum/developing-an-add-on-on-c/td-p/388005" target="_blank" rel="noopener"&gt;https://community.graphisoft.com/t5/Developer-forum/developing-an-add-on-on-c/td-p/388005&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i also had to start with c++ for the plugin development. a few tipps:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- test out low level stuff in a little console application,&amp;nbsp; easy stuff with objects and classes etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- realy realy check out the examples, they are very helpfull. look specially on the style of those. some have a very c-heavy coding style, others are more in line with java &amp;amp; c# i found the one with a high level coding language style the most usefull.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- it helped me a lot go trough examples like the maze generator step by step and comment evrything they do in my own words&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hope that helps a little&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 06:21:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/C-add-on/m-p/388116#M983</guid>
      <dc:creator>Joel Buehler</dc:creator>
      <dc:date>2023-07-19T06:21:15Z</dc:date>
    </item>
  </channel>
</rss>

