Re: [CMake] Having a real hardtime installing CMake on a Linux cluster machine

2014-11-05 Thread Bill Hoffman
On 11/5/2014 4:03 PM, Joshua Studen wrote: I don't think the configure script is respecting the variables at all. For example, even though I've specified --no-qt-gui, I still get this after configure: Could NOT find Qt4 (missing: QT_QMAKE_EXECUTABLE QT_MOC_EXECUTABLE QT_RCC_EXECUTABLE QT_UIC_EX

Re: [CMake] Having a real hardtime installing CMake on a Linux cluster machine

2014-11-05 Thread Joshua Studen
It's not working. the problem is this /net/hp95/users/jstuden3/cmake-2.8.8/Source/CursesDialog/form/form.h:46:31: error: ncurses/ncurses.h: No such file or directory It's trying to reference the directory specified in CFLAGS/ncurses/ncurses.h so if I pass in CFLAGS="-I/net/hu19/jstuden3/x86_64-6

Re: [CMake] Having a real hardtime installing CMake on a Linux cluster machine

2014-11-05 Thread Tom Kacvinsky
With bash: CFLAGS="-IXXX" CXXFLAGS="-IXXX" LDFLAGS="-LXXX" ./configure ... This should indicate to configure that headers and libraries are found in the locations you specify. On Wed, Nov 5, 2014 at 3:01 PM, Joshua Studen wrote: > Hi, > > The problem is relatively simple. I've downloaded cmake

[CMake] Having a real hardtime installing CMake on a Linux cluster machine

2014-11-05 Thread Joshua Studen
Hi, The problem is relatively simple. I've downloaded cmake and have run configure as follows: ./configure --prefix=$HOME/x86_64-6.4 --no-qt-gui The configure phase seems to work fine.. throws no errors, but then when I type gmake, I get the following errrors: /net/hp95/users/jstuden3/cmake-2.