[Quickfix-developers] Re: include files in 1.11.1 not installed?
Brought to you by:
orenmnero
|
From: Dale W. <wil...@oc...> - 2006-03-13 19:09:39
|
Dale Wilson wrote:
> Hi All,
>
> I just downloaded quickfix-1.11.1.zip (source distribution); unzipped
> it; and built it with VC7.1.
> Two of the header files are not being copied from .../src/C++/fix42 to
> ../include/quickfix/fix42
> The "missing" files are TestReport.h and QuoteStatusRequest.h
>
> When I copy them "by hand" everything seems to work ok.
>
> Before I spend time tracking down the "why" I thought I'd ask to see
> if anyone knew what's going on.
>
> Dale
I just figured it out. The post build step puts "test" in the exclude
file. xcopy /? says:
/EXCLUDE:file1[+file2][+file3]...
Specifies a list of files containing strings. Each string
should be in a separate line in the files. When any of the
strings match any part of the absolute path of the file to be
copied, that file will be excluded from being copied. For
example, specifying a string like \obj\ or .obj will exclude
all files underneath the directory obj or all files with the
.obj extension respectively.
TestReport.h is obvious: TESTreport.h
It took a moment, however to grok: quoTESTatusrequest.h
I'll do a bugreport on this one.
Dale
|