Hi!
I need to build PowerBuilder (11.5) project and get five files: two with .pbd extension, two with .netmodule extension and one executable file. Here's the orca script:
start session
set local_proj = "C:\scb"
scc get connect properties "c:\scb\imdesktop.pbw"
scc set connect property provider "PBSCC Proxy"
scc set connect property logfile "Testbuild.log"
scc set connect property logappend True
scc set connect property localprojpath local_proj
scc set connect property userid "Vasily"
scc set connect property deletetempfiles "False"
scc connect
;**********************************************************************
; Refresh all the objects in all the PBLs in the target of the
; application and regenerate them all
;**********************************************************************
scc set target ".\imdesktop.pbt" "REFRESH_ALL"
build application FULL
;**********************************************************************
; Now build the exe and PBD
;**********************************************************************
build executable ".\imdesktop.exe" ".\main.ico" ".\recources.pbr" "NN"
build Library ".\imdesktop.pbl" "" PBD
build Library ".\reports.pbl" "" PBD
;**********************************************************************
; Close the PBORCA Session
;**********************************************************************
end session
After this script there are two .pbd files and one .exe. The application does not work.
So, the question: how can I generate netmodule files for PBLs via orca script?