Commit 82f6d6d5 authored by Claes Sjofors's avatar Claes Sjofors

Wb build export fix and doc

parent ab4e99d0
...@@ -83,6 +83,9 @@ SObject pwrb:Class ...@@ -83,6 +83,9 @@ SObject pwrb:Class
!/** !/**
! Target file specification. ! Target file specification.
! Only the path need to be specified. ! Only the path need to be specified.
!
! If files should be copied to several directories, Target can contain
! a list separated by comma, eg '$pwrp_exe, $pwrp_web'
!*/ !*/
Object Target $Attribute 2 Object Target $Attribute 2
Body SysBody Body SysBody
......
...@@ -74,6 +74,8 @@ SObject pwrb:Class ...@@ -74,6 +74,8 @@ SObject pwrb:Class
! Options. ! Options.
! - BuildBeforeNode, directory is automatically built before any ! - BuildBeforeNode, directory is automatically built before any
! node is built. ! node is built.
! - BuildAfterNode, directory is automatically built after any
! node is built.
!*/ !*/
Object Options $Attribute 2 Object Options $Attribute 2
Body SysBody Body SysBody
......
...@@ -105,6 +105,8 @@ SObject pwrb:Class ...@@ -105,6 +105,8 @@ SObject pwrb:Class
! Options. ! Options.
! - BuildAfterNode, export is automatically built before any ! - BuildAfterNode, export is automatically built before any
! node is built. ! node is built.
! - BuildBeforeNode, directory is automatically built before any
! node is built.
!*/ !*/
Object Options $Attribute 4 Object Options $Attribute 4
Body SysBody Body SysBody
......
...@@ -104,6 +104,8 @@ SObject pwrb:Class ...@@ -104,6 +104,8 @@ SObject pwrb:Class
! Options. ! Options.
! - BuildBeforeNode, directory is automatically built before any ! - BuildBeforeNode, directory is automatically built before any
! node is built. ! node is built.
! - BuildAfterNode, directory is automatically built after any
! node is built.
!*/ !*/
Object Options $Attribute 4 Object Options $Attribute 4
Body SysBody Body SysBody
......
...@@ -47,22 +47,22 @@ SObject pwrb:Type ...@@ -47,22 +47,22 @@ SObject pwrb:Type
Attr PgmName = "BuildExportMask" Attr PgmName = "BuildExportMask"
EndBody EndBody
!/** !/**
! Export is automatically built after a node is built. ! Export is automatically built before a node is built.
!*/ !*/
Object BuildAfterNode $Bit Object BuildBeforeNode $Bit
Body SysBody Body SysBody
Attr PgmName = "BuildAfterNode" Attr PgmName = "BuildBeforeNode"
Attr Text = "BuildAfterNode" Attr Text = "BuildBeforeNode"
Attr Value = 1 Attr Value = 1
EndBody EndBody
EndObject EndObject
!/** !/**
! Export is automatically built before a node is built. ! Export is automatically built after a node is built.
!*/ !*/
Object BuildBeforeNode $Bit Object BuildAfterNode $Bit
Body SysBody Body SysBody
Attr PgmName = "BuildBeforeNode" Attr PgmName = "BuildAfterNode"
Attr Text = "BuildBeforeNode" Attr Text = "BuildAfterNode"
Attr Value = 2 Attr Value = 2
EndBody EndBody
EndObject EndObject
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment