[Quickfix-developers] (no subject)
Brought to you by:
orenmnero
From: Randy F. <rjf...@ya...> - 2002-03-06 13:05:21
|
QuickFix Developers, Here is a fix you can apply to compile for VS.NET until the source code is updated. Replace the custom build step for all header files in the quickfix_lib project with the new custom build step. This fix will work for both VS 6.0 and .NET (7.0) but is only required for VS.NET. <New custom build step> @echo off IF EXIST include$(InputName).h ( del include$(InputName).h ) xcopy "$(InputPath)" include </New custom build step> The all unit tests pass for source compiled with VS.NET but the acceptance test will not run. It appears the command line parameters are not mangled when running the VS.NET compiled atrun.exe. I'm looking into this problem. One issue remains for side by side installations of Visual Studio. You will have to ignore the libraries in the VS.NET lib directory when compiling with VS 6.0. This implies that you will need two versions of the dsp. For the time being just create a copy of the source for VS.NET and make the necessary modifications. Randy Fredrick rjf...@ya... --------------------------------- Do You Yahoo!? Try FREE Yahoo! Mail - the world's greatest free email! |