since the /clr switch is not on, your application should not have dependency
on the .Net framework. What is the error message you get? Can you debug the
the project is part of a solution, that contains other projects (but
settings are same for all projects). the command lines for the startup
project are:
compiler:
/I "..\..\..\Components\Controller\MIController" /I "..\..\..\Common
\Internal\TCPConnection\inc" /I "..\..\..\Common\Internal\Utility
\inc" /I "..\..\..\Common\Internal\ThumbnailViewer\inc" /I "..\..\..
\Common\External\UPeNd\inc" /I "..\..\..\Common\Internal\UPnP\inc" /I
"..\..\..\common\internal\RDP\inc" /I "C:\Qt\4.3.2\include\QtCore" /I
"C:\Qt\4.3.2\include\QtGui" /I "C:\Qt\4.3.2\include" /I "C:\Qt
\4.3.2\include\ActiveQt" /I "C:\Qt\4.3.2\mkspecs\win32-msvc2005" /I "..
\..\..\common\internal\MIController\inc" /I "..\..\..\common\internal
\ISController\inc" /I "..\..\..\Components\Controller\ISController" /I
"..\..\..\Common\Internal\HookDll\inc" /D "_WINDOWS" /D "UNICODE" /D
"WIN32" /D "QT_LARGEFILE_SUPPORT" /D "QT_DLL" /D "QT_GUI_LIB" /D
"QT_CORE_LIB" /D "QT_THREAD_SUPPORT" /D "TCPCONNECTIONPOINT_EXPORTS" /
D "RDPCLIENT_EXPORTS" /D "RDPSERVER_EXPORTS" /D "MICONTROLLER_EXPORT" /
D "ISCONTROLLER_EXPORT" /D "_UNICODE" /FD /EHsc /MDd /GS- /
Zc:wchar_t- /Fo"debug\\" /Fd".\\" /W3 /nologo /c /Zi /TP /wd4100 /
wd4005 /wd4482 /wd4018 /wd4189 /errorReport:prompt
linker:
/OUT:"debug\CCESTPC.EXE" /INCREMENTAL /NOLOGO /LIBPATH:"C:\Qt
\4.3.2\lib" /LIBPATH:"..\..\..\Common\Internal\TCPConnection\Lib
\Debug" /LIBPATH:"..\..\..\Common\Internal\UPnP\Lib\Debug" /LIBPATH:"..
\..\..\Common\Internal\ThumbnailViewer\Lib\Debug" /LIBPATH:"..\..\..
\Common\Internal\RDP\Lib\Debug" /LIBPATH:"..\..\..\Common\Internal
\MIController\Lib\Debug" /MANIFEST /MANIFESTFILE:"debug\
\CCESTPC.EXE.intermediate.manifest" /DEBUG /SUBSYSTEM:WINDOWS /
NOASSEMBLY /ERRORREPORT:PROMPT qtmaind.lib QtGuid4.lib QtCored4.lib
CCTNVIEW.LIB CCUPNPHD.lib CCTCPCON.lib CCRASCLT.LIB CCRASSRV.LIB
CCMICTRL.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 "..\..\controller\iscontroller\debug
\ccisctrl.lib" "..\..\thumbnailviewer\debug\cctnview.lib" "..\..
\datahndlr\debug\ccdatahndlr.lib" "..\upnpservice\debug\ccupnphd.lib"
"..\..\tcpconnectionpoint\debug\cctcpcon.lib" "..\..\rdp\client\debug
\ccrasclt.lib" "..\..\controller\micontroller\debug\ccmictrl.lib" "..
\..\rdp\server\debug\ccrassrv.lib"
ajk wrote:
On Wed, 5 Dec 2007 03:20:40 -0800 (PST), "pravin.chaudhary"
<pravin.chaudhary@gmail.com> wrote:
i am using visual studio 2005 to build a native c++ project, which
uses win32 API, but not dot net libraries. but my project does not run
on a machine w/o dot net runtime installed. How can I remove this
dependency?
could u paste the command line for linker and compiler?