Difference between revisions of "AnyWave:DeveloperCorner"

From WikiMEG
Jump to: navigation, search
 
(109 intermediate revisions by one user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
=Welcome=
 
=Welcome=
This part of the Wiki is dedicated to developers who would like to implement their own plug-ins for AnyWave.
+
This part of the Wiki is dedicated to developers who would like to implement their own plug-ins for AnyWave.<br />
 
+
{| style="text-align: center; margin: auto;"
=[[AnyWave:BuildSDK|Build the SDK]]=
+
|+ Quick Navigation
 
+
|-
=How to use the SDK=
+
| [[File:Menu_matlab_plugin.png|400px|link=AnyWave:MATLAB_Plugin|'''Write a MATLAB Plugin''']] || [[File:Menu_cpp_plugin.png|400px|link=AnyWave:Cpp_Plugin|'''Write a c++ Plugin''']]
A regular AnyWave plug-in is a C++ project that will be using C++ objects defined in the SDK.<br />
+
|-
 
+
| [[File:Menu_matlab_batch.png|400px|link=AnyWave:Plugin_Batch|'''Make your plugin batchable''']] || [[File:Menu_matlab_batch_gui_compatible.png|400px|link=AnyWave:MATLAB_Batch_GUI|'''Make your plugin compatible with the batch GUI of AnyWave''']]
So, before creating a project to build a plug-in, the SDK must be correctly configured.<br />
+
|}
This is easily done by defining an environment variable called '''AWSDK''' that must contain the path to the SDK folder location.<br />
+
 
+
On Linux and Mac systems this can be accomplished by adding the two following lines to your .bashrc file:<br />
+
''AWSDK=/home/user/Dev/AwSDK''<br />
+
''export AWSDK''
+
 
+
On Windows, this can be done by opening the Security and System/System panel. <br />
+
Then click on the left part of the window on Advanced properties.<br />
+
 
+
'''NOTE:''' close and re-open the terminal for the changes to be applied.
+
 
+
=[[AnyWave:AwObjects|Get used with AnyWave objects]]=
+
 
+
=[[AnyWave:PrepareCMake|Prepare a cmake project to build a plug-in]]=
+
 
+
=[[AnyWave:BuildReader|Build a Reader plug-in]]=
+

Latest revision as of 17:14, 21 April 2020

Welcome

This part of the Wiki is dedicated to developers who would like to implement their own plug-ins for AnyWave.

Quick Navigation
Write a MATLAB Plugin Write a c++ Plugin
Make your plugin batchable Make your plugin compatible with the batch GUI of AnyWave