vi build then copy to release directory #685
-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
OW build system is for developers which works on OW source code. |
Beta Was this translation helpful? Give feedback.
-
That works; thank you! |
Beta Was this translation helpful? Give feedback.
OW build system is for developers which works on OW source code.
Therefore it is flexible system and some things is determined by programer for specific needs.
if you run
build
command it only build OW and don't copy binary objects to installation directory tree (release tree).If you want to create installation directory tree and copy all builded object there you can do it selectively or for full build.
by example if you want to create full OW build and create installation tree then run command
build rel
.The
OWRELROOT
environment variable control what release tree directory is used. If it is not setup then defaultrel
is used.If you already have OW build and you want create installatio…