Hi guys, I'm doing an automated build which intends to build a HEW workspace with command line. What I'm doing is like below,
HEW2.exe "ow MY_WORKSPACE_PATH" "BL" "QU"
This command will open HEW and run the "Build All" command. (I want it to quit HEW after building, somehow it fails...)
I'm wondering if there is any way to build the workspace on background WITHOUT opening HEW, in this way, the whole automated build process will be more ideal.
Thanks in advance.
Hi
A late response
The workspace needs to be closed befor HEW can quit.
This command opens HEW, builds and then exits HEW
HEW2.exe "ow MY_WORKSPACE_PATH" "BL" "CW" "QU"…
HEW provides only the build utility.
Go to Setup > Options in HEW, tell it to use makefiles, let it run once to get the makefile and then run these make files from a DOS command prompt.
Many thanks. I will try it.
HEW2.exe "ow MY_WORKSPACE_PATH" "BL" "CW" "QU"
Or even better for full control
HEW2.exe "ow MY_WORKSPACE_PATH" "CP MY_PROJECT" "CC MY_CONFIGURATION" "BU WAIT" "CW" "QU"