Alaska Software Inc. - Add Obj Files
Username: Password:
AuthorTopic: Add Obj Files
Osvaldo RamirezAdd Obj Files
on Sun, 20 Jun 2004 15:16:51 -0600
Hello Guys

How can Add obj files  into my project. ?
If I add manually, at the moment to open VXIDE, it delete this files.

Heres is my project

[PROJECT]
    DEBUG         = yes
    CO PILE_FLAGS = /ga /q /m
    VERSION       = 2.0
    OPENFILES     = AUTONOMO.PRG
    AUTONOMO.XPJ

[AUTONOMO.XPJ]
    ..\AUTONOMO.exe

[..\AUTONOMO.exe]
    COMPILE       = xpp
    COMPILE_FLAGS = /q
    DEBUG_SAVE    = yes
    GUI           = yes
    LINKER        = alink
    LINK_FLAGS    =
    RC_COMPILE    = arc
    RC_FLAGS      = /v
    OBJ_DIR       = C:\SERVIDOR\PROGRAMS
    CO PILE_FLAGS = /ga /q /m
 $START-AUTODEPEND
    STD.CH
    SET.CH
    NATMSG.CH
    GET.CH
    PROMPT.CH
    MEMVAR.CH
    COLLAT.CH
    DLL.CH
    GRA.CH
    XBP.CH
    TOOLS.CH
    FILEIO.CH
    COMMON.CH
    TASKBAR.CH
    TOPDOWN.CH
    APPEVENT.CH
    DIRECTRY.CH
    KEYCODE.CH
    SEE32.CH
    DBFDBE.CH
    DMLB.CH
    XBTSYS.CH
    BAP.CH
    ADDZIP.CH
    AUTONOMO.obj
    BDZIP.obj

   xppdates.obj   <==== Here is my files
   xppole2.obj   <===== But If I edit this with VXIDE, it Delete this files


 $STOP-AUTODEPEND
    ..\..\LANGUAGE\ALASKA\XPPW32.182\TOOLS\JOBISOFT.RES
    AUTONOMO.PRG
    BDZIP.PRG
Sander Elias Re: Add Obj Files
on Mon, 21 Jun 2004 09:26:30 +0200
Hi Osvaldo,

Move them out of your auto-depend part
like

>
>[..\AUTONOMO.exe]
>    COMPILE       = xpp
>    RC_COMPILE    = arc
>    RC_FLAGS      = /v
>    OBJ_DIR       = C:\SERVIDOR\PROGRAMS
>    CO PILE_FLAGS = /ga /q /m
>// $START-AUTODEPEND
>    STD.CH
>    SET.CH
>    NATMSG.CH
>    TASKBAR.CH

>
>// $STOP-AUTODEPEND
>   xppdates.obj   <==== Here is my files
>   xppole2.obj   <===== But If I edit this with VXIDE, it Delete this files
>    ..\..\LANGUAGE\ALASKA\XPPW32.182\TOOLS\JOBISOFT.RES
>    AUTONOMO.PRG
>    BDZIP.PRG
>

the auto-depend part is automatically managed (hence the name). This
was even so before VX, only little used. (try pbuild project.xpj /g.
which does the same!)

hope this helps
Regards
Sander Elias
Osvaldo RamirezRe: Add Obj Files
on Thu, 24 Jun 2004 09:46:31 -0600
Thanks Sander

It work fine

Regards
Osvaldo Ramirez