Hi, > Here is speedtst.hbp > =============== > > -3rd=[ HBIDEVERSION ] > -3rd=1.0 > -3rd=[ PROPERTIES ] > -3rd=Type = Executable > -3rd=Title = Speed Test > -3rd=Location = C:/harbour/contrib/hbide/projects > -3rd=WorkingFolder = C:/harbour/contrib/hbide/projects > -3rd=DestinationFolder = C:/harbour/contrib/hbide/projects > -3rd=Output = speedtst > -3rd=LaunchParams = > -3rd=LaunchProgram = > -3rd=BackupFolder = > > -3rd=[ FLAGS ] > > -3rd=[ SOURCES ] > C:/harbour/tests/speedtst.prg
Just avoid spaces in option names. (or if you absolutely want to keep them, put the whole option between double quotes). Please remember hbmk2 is not a line based parser. --- -3rd=[HBIDEVERSION] -3rd=1.0 -3rd=[PROPERTIES] -3rd=Type = Executable -3rd=Title = Speed Test -3rd=Location = C:/harbour/contrib/hbide/projects -3rd=WorkingFolder = C:/harbour/contrib/hbide/projects -3rd=DestinationFolder = C:/harbour/contrib/hbide/projects -3rd=Output = speedtst -3rd=LaunchParams = -3rd=LaunchProgram = -3rd=BackupFolder = -3rd=[FLAGS] -3rd=[SOURCES] C:/harbour/tests/speedtst.prg --- This layout has a few problems though, so I'd suggest this one (also in sync with my past notes for -3rd feature): --- -3rd=hbide_Version=1.0 -3rd=hbide_Type=Executable "-3rd=hbide_Title=Speed Test" -3rd=hbide_Location=C:/harbour/contrib/hbide/projects -3rd=hbide_WorkingFolder=C:/harbour/contrib/hbide/projects -3rd=hbide_DestinationFolder=C:/harbour/contrib/hbide/projects -3rd=hbide_Output=speedtst -3rd=hbide_LaunchParams= -3rd=hbide_LaunchProgram= -3rd=hbide_BackupFolder= -3rd=hbide_flags1= -3rd=hbide_flags2= -3rd=hbide_flagsN= speedtst.prg --- The parser I wrote for hbide, will recognize the source parameters, so there is not need to mark them with '[SOURCES]'. Brgds, Viktor _______________________________________________ Harbour mailing list (attachment size limit: 40KB) [email protected] http://lists.harbour-project.org/mailman/listinfo/harbour
