1

Possible Duplicate:
Why does fatal error “LNK1104: cannot open file 'C:\Program.obj'” occur when I compile a C++ project in Visual Studio?

Can you let me know what this error means in c++ fatal error LNK1104: cannot open file 'omniorb414_rtd.lib'

Community
  • 1
  • 1
manasa
  • 11
  • 1
  • 2
  • 2
    It means that the linker cannot find omniorb414_rtd.lib - Check your linker input paths – Erik Apr 05 '11 at 13:43
  • 1
    see here: http://stackoverflow.com/questions/133698/why-does-fatal-error-lnk1104-cannot-open-file-c-program-obj-occur-when-i-co – MByD Apr 05 '11 at 13:43
  • 1
    Please choose more descriptive titles for your questions. "C++ Programming" could cover literally anything. – user229044 Apr 05 '11 at 13:46

1 Answers1

1

In Configuration Properties->Linker->General add the path to the directory your library lives in under Additional library Directories.

The path should be "C:\Dev\3rdPartytoolkits" according to your comment.

Nathanael
  • 1,782
  • 17
  • 25