Re: [CMake] Missing libgmp-10.dll

2011-06-03 Thread Bill Lorensen
My version is 3.18 and I have to add c:/MinGW/bin to my windows Path otherwise the I get the missing dll error. I did not have to do this in earlier mingw versions. Notice I set it in Path and not PATH. Bill On Thu, Jun 2, 2011 at 4:16 PM, Bill Hoffman bill.hoff...@kitware.com wrote: On

Re: [CMake] Missing libgmp-10.dll

2011-06-03 Thread Bill Hoffman
On 6/3/2011 8:10 AM, Bill Lorensen wrote: My version is 3.18 and I have to add c:/MinGW/bin to my windows Path otherwise the I get the missing dll error. I did not have to do this in earlier mingw versions. Notice I set it in Path and not PATH. Strange, they must have changed the version

Re: [CMake] Missing libgmp-10.dll

2011-06-03 Thread David Cole
On Fri, Jun 3, 2011 at 10:55 AM, Bill Hoffman bill.hoff...@kitware.com wrote: On 6/3/2011 8:10 AM, Bill Lorensen wrote: My version is 3.18 and I have to add c:/MinGW/bin to my windows Path otherwise the I get the missing dll error. I did not have to do this in earlier mingw versions. Notice I

Re: [CMake] Missing libgmp-10.dll

2011-06-03 Thread David Cole
On Fri, Jun 3, 2011 at 8:10 AM, Bill Lorensen bill.loren...@gmail.com wrote: My version is 3.18 and I have to add c:/MinGW/bin to my windows Path otherwise the I get the missing dll error. I did not have to do this in earlier mingw versions. Notice I set it in Path and not PATH. Path and PATH

Re: [CMake] Missing libgmp-10.dll

2011-06-03 Thread Bill Lorensen
It makes a difference for me when running the cmake-gui. I have to define a windows system Path not PATH. If I run from the msys shell, everything is fine because the shell adds the proper path. On Fri, Jun 3, 2011 at 11:23 AM, David Cole david.c...@kitware.com wrote: On Fri, Jun 3, 2011 at 8:10

Re: [CMake] Missing libgmp-10.dll

2011-06-03 Thread Bill Lorensen
Dave, Exactly what I see unless I add c:/MinGW/bin to the windows system Path (not PATH). cmake-gui fails, but the msys shell works fine. Bill On Fri, Jun 3, 2011 at 11:21 AM, David Cole david.c...@kitware.com wrote: On Fri, Jun 3, 2011 at 10:55 AM, Bill Hoffman bill.hoff...@kitware.com

Re: [CMake] Missing libgmp-10.dll

2011-06-03 Thread David Cole
On Fri, Jun 3, 2011 at 4:36 PM, Bill Lorensen bill.loren...@gmail.com wrote: Dave, Exactly what I see unless I add c:/MinGW/bin to the windows system Path (not PATH). cmake-gui fails, but the msys shell works fine. Bill How do you add it to the Path (not PATH)?? (Give me step-by-step,

Re: [CMake] Missing libgmp-10.dll

2011-06-03 Thread Bill Lorensen
My Computer - View System Information - Advanced - Environment Variables - System Variables - Path -. Edit (or New) - C;/MinGW/bin;... On Fri, Jun 3, 2011 at 4:47 PM, David Cole david.c...@kitware.com wrote: On Fri, Jun 3, 2011 at 4:36 PM, Bill Lorensen bill.loren...@gmail.com wrote: Dave,

[CMake] Missing libgmp-10.dll

2011-06-02 Thread Julien Lemay
Hello, I recently started using CMake, and I'm trying to build a Code::Blocks MinGW project. I downloaded CMake 2.8.4 for Windows 32-bit; my Windows version is 64-bit, but it seems that shouldn't cause problems. Using the CMake GUI, I'm trying to build a project, but I keep getting the

Re: [CMake] Missing libgmp-10.dll

2011-06-02 Thread Lecourt Maxime
Hi, when you install MinGW, the minGW/bin directory is not added to the PATH variable. So you need to add your minGW/bin directory to your path variable, so CMake can find the needed libraries. Maxime Le 02/06/2011 21:52, Julien Lemay a écrit : Hello, I recently started using CMake, and

Re: [CMake] Missing libgmp-10.dll

2011-06-02 Thread Bill Hoffman
On 6/2/2011 4:01 PM, Lecourt Maxime wrote: Hi, when you install MinGW, the minGW/bin directory is not added to the PATH variable. So you need to add your minGW/bin directory to your path variable, so CMake can find the needed libraries. Seems that MinGW changed something recently... This is