Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Full Build, Incremental Build and Deploy within Powerbuilder

What is the difference between a Full Build, an Incremental Build and Deploy within Powerbuilder? The only difference I can see is that Deploy allows you to update the PBDs for, well, deployment.

like image 965
glasnt Avatar asked Jan 14 '10 01:01

glasnt


1 Answers

Full Build regenerates every object. Incremental Build regenerates changed objects and objects that reference changed objects. (Reality is that incremental is a little more complex than that, but that is the intended idea.) Deploy launches whichever project is selected in the properties for the target, so it can do an incremental or full build, depending on what is defined in the project, plus generate whatever executables are defined by the project.

Good luck,

Terry.

like image 86
Terry Avatar answered Dec 20 '22 10:12

Terry