Re: [Quickfix-developers] Building QuickFIX for C# without Visual Studio .NET
Brought to you by:
orenmnero
From: Oren M. <ore...@ya...> - 2003-03-11 19:50:03
|
You will need to download the .NET Framework SDK from here: http://www.microsoft.com/downloads/details.aspx?FamilyId=4FE5BDB5-C7A7-4505-9927-2213868A325B&displaylang=en Once you have that, you can build from the command line. You can just use the same parameters that VS.NET passes through to the command line. The following are the parameters being passed to the command line to the compiler and the linker to build quickfix.lib: to cl.exe: /O2 /Ob1 /I "../" /D "WIN32" /D "NDEBUG" /D "_LIB" /D "_MBCS" /GF /FD /EHsc /MD /Gy /GR /YX"stdafx.h" /Fp".\Release/quickfix_lib.pch" /Fo".\Release/" /Fd".\Release/" /W3 /nologo /c /TP to link.exe /OUT:"lib\quickfix.lib" /NOLOGO And the following is used to build quickfix_net.dll to cl.exe: /O2 /Ob1 /I "..\..\..\\" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_WINDLL" /FD /EHsc /MD /Fo"Release/" /Fd"Release/vc70.pdb" /W2 /nologo /c /clr /TP to link.exe: /OUT:"..\..\lib/quickfix_net.dll" /INCREMENTAL:NO /NOLOGO /LIBPATH:"..\..\lib" /DLL /DEBUG /PDB:"..\..\lib/quickfix_net.pdb" quickfix.lib ws2_32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Alexandre Hoang <a....@ca...> wrote: Hello, I have been using QuickFIX through its Java API and now, I would like (rather: I have) to use it through its C# API. The problem is: I have only Visual C++; I don't have Visual Studio .NET. How can I build QuickFix for C# without Visual Studio .NET ? Thanks, Alexandre * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Confidentiality Notice : The information contained in this e-mail message is intended only for the personal and confidential use of the recipient(s) named above. If the reader of this message is not the intended recipient or an agent responsible for delivering it to the intended recipient, you are hereby notified that you have received this document in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify pos...@ca... immediately by e-mail, and delete the original message. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Quickfix-developers mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-developers --------------------------------- Do you Yahoo!? Yahoo! Web Hosting - establish your business online |