We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
on 2024-05-03 09:25 AM
You need to install a couple of things to get started with Archicad Add-Ons:
The source for the example Add-On is located here: https://github.com/GRAPHISOFT/archicad-addon-cmake. You can acquire the code with any git user interface, for example GitHub Desktop, or you can just run this script from the command line:
git clone https://github.com/GRAPHISOFT/archicad-addon-cmake.git --recurse-submodules
Now go to the root directory of the cloned repository, and run the following command:
python Tools/BuildAddOn.py --configFile config.json --acVersion 26 27
That's it! The above commands will fetch the code from GitHub, acquire all the necessary Archicad Development Kits for compilation, and build the Add-On for the specified versions.
The result can be located in the Build/ExampleAddOn/<Archicad Version>/<Language> directory. In this directory, you'll find:
If you are ready to start building your own Add-On, create your very own copy of the template repository using GitHub:
Now you have your own copy and everything is configured. Follow the above steps using this repository and start building your own Archicad Add-On.