-
Notifications
You must be signed in to change notification settings - Fork 514
xadd
David Anderson edited this page Mar 19, 2026
·
2 revisions
xadd adds BOINC platforms to the BOINC database.
Information is read from an XML file project.xml
in the project's root directory.
Run xadd from the project root directory, i.e.:
cd ~/projects/project_name
./bin/xadd
The structure of project.xml is:
<boinc>
<platform>
<name>anonymous</name>
<user_friendly_name>anonymous</user_friendly_name>
</platform>
<platform>
<name>i686-pc-linux-gnu</name>
<user_friendly_name>Linux/x86</user_friendly_name>
</platform>
<platform>
<name>windows_intelx86</name>
<user_friendly_name>Windows/x86</user_friendly_name>
</platform>
<platform>
<name>powerpc-apple-darwin</name>
<user_friendly_name>Mac OS X</user_friendly_name>
</platform>
...
</boinc>