| | 1 | = Building Wrapper/VboxWrapper for Release = |
| | 2 | |
| | 3 | == Update Version Information == |
| | 4 | |
| | 5 | Update the following files: |
| | 6 | * version.h |
| | 7 | * configure.ac |
| | 8 | * win_build/<project file> |
| | 9 | |
| | 10 | Commit and push changes to git. |
| | 11 | |
| | 12 | == Create Git Tag == |
| | 13 | |
| | 14 | Create a new tag for the release. |
| | 15 | |
| | 16 | Wrapper: |
| | 17 | {{{ |
| | 18 | wrapper/<build number> |
| | 19 | }}} |
| | 20 | |
| | 21 | Vboxwrapper: |
| | 22 | {{{ |
| | 23 | vboxwrapper/<build number> |
| | 24 | }}} |
| | 25 | |
| | 26 | Commit and push changes to git. |
| | 27 | |
| | 28 | == Build == |
| | 29 | |
| | 30 | === Windows === |
| | 31 | |
| | 32 | Execute a Visual Studio command prompt from boinc/winbuild: |
| | 33 | {{{ |
| | 34 | $> buildenv.cmd type release platform <x86|x64> |
| | 35 | $> build <wrapper|vboxwrapper> |
| | 36 | $> <codesignwrap|codesignvbox> |
| | 37 | }}} |
| | 38 | |
| | 39 | Zip up the EXE and corresponding PDB file into a zip file and upload to the BOINC sever. |
| | 40 | |
| | 41 | === Linux === |
| | 42 | |
| | 43 | Execute from boinc/: |
| | 44 | {{{ |
| | 45 | $> ./_autosetup |
| | 46 | $> ./configure --disable-server --disable-client --disable-manager |
| | 47 | $> make clean |
| | 48 | $> make |
| | 49 | $> cd samples/<wrapper|vboxwrapper> |
| | 50 | $> make clean |
| | 51 | $> make |
| | 52 | $> strip <wrapper/vboxwrapper> |
| | 53 | $> mv <wrapper/vboxwrapper> <finale executable name> |
| | 54 | $> zip <finale executable name>.zip <finale executable name> |
| | 55 | }}} |
| | 56 | |
| | 57 | Zip up the executable into a zip file and upload to the BOINC sever. |
| | 58 | |
| | 59 | === Mac === |
| | 60 | |
| | 61 | Follow the instructions in boinc/<wrapper/vboxwrapper>/ReadMe.txt for building the wrapper. |
| | 62 | |