Experts,
I wrote ORCA script to generate exe and pbds, but exe generated is too large (approx. 8 MB) compared to when the same exe (approx. 800 KB) is generated through PB IDE. Not sure what I missed in ORCA commands.
Two things to note....
- I don't generate pbd for the pbl having application object (same in PB IDE, I don't select pbd check box against that pbl)
- I have two pbds (pbejbclient115.pbd & pbwsclient115.pbd) in library list and not included build library command.
sample script that I wrote....
start session
set liblist ".\dir1\pbl1.pbl; .\dir2\pbl2.pbl; .\dir3\pbl3.pbl; .\dir4\pbejbclient115.pbd; .\dir5\pbwsclient115.pbd"
set application ".\dir1\pb1.pbl" "testapp"
build library ".\dir2\pbl2.pbl" "" pbd
build library ".\dir3\pbl3.pbl" "" pbd
build application full
build executable ".\testapp.exe" "test.ico" "c:\test\test.pbr" "nnnyy"
end session
Thanks in advance !
-Sandeep