|
Only multi-threaded DLL libraries can be used with Ice!
when i complie a project ,a error message shown:
"Only multi-threaded DLL libraries can be used with Ice!'
i found it defined as follow:
# if !defined(_DLL) || !defined(_MT)
# error "Only multi-threaded DLL libraries can be used with Ice!"
# endif
so i add _DLL,_MT in project->setting->c/c++->preprocessor definitions
and rebuild, it look ok,but i don't know what its meaning. if when the program use multi-thread, and user must set the _DLL and _MT?
|