CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Sep 2010
    Posts
    39

    include directories in VS

    I am trying to include library paths in VS 2012 through the new property pages.I downloaded and installed mpich2-64 bit libraries under "C:\Program Files\MPICH2\include" and set the include path in Microsoft.cpp.x64.user property file so the path now looks like
    Code:
    "$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);C:\Program Files\MPICH2\include;"
    But somehow it fails to find the files.
    Code:
     fatal error C1083: Cannot open include file: 'mpi.h': No such file or directory
    The file is definitely there, so what could be the problem ?

  2. #2
    Join Date
    Sep 2010
    Posts
    39

    Re: include directories in VS


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured