[CMake] Which Curses to install?

2008-05-24 Thread Dario Figueira
Hello,

I would like to have the CMake GUI up and running in my debian OS, and for
that i need to install curses libraries..
None of the packages available with the apt-get are obviously the ones
needed, so i'm unsure what to install.
I tried downloading ncurses from GNU, but when reading the INSTALL.txt, i
find there is a lot of different options or ways to install them that
requires more knowledge than i presently have.

So, to have GUIs (ccmake .) up and running in Ubuntu, what do you advise?

Thank you,
-- 
Dario Figueira - ISR at IST Lisbon, Portugal
___
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

[CMake] How to force CMake to generate a makefile that compiles with debugging information (-g)

2008-04-20 Thread Dario Figueira
The title pretty much sums it;
I can't seem to get a straight anwser from the CMake manual.. :S
And the make generated does not have an option to compile with debugging
informations :|

Any hints? Am i missing something terribly obvious?

Thank you in advance,

-- 
Dario Figueira - IST nº 54545 - Delegado 5º Ano de MEEC
no google ^^ [EMAIL PROTECTED]
___
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

[CMake] Curses libraries not found

2008-03-24 Thread Dario Figueira
:s, where are they? so i can install ccmake

i'm usingKubunto, and i dowloaded the 2.4.7 version and make installed it.

Any hints will be much appreciated, thank you.

-- 
Dario Figueira -
___
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

[CMake] FindYARP.cmake

2008-03-03 Thread Dario Figueira
YARP - Yet Another Robot Platform

I am looking for someone who also uses/ed YARP and has one of those =)
FindYARP.cmake
Google was not helpfull, unexpectedly.

Anyone? Or should i just dig in and make my own?

Thank you all,

-- 
Dario Figueira
___
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

[CMake] Cmake cannot find source file / Cmake can not determine linker language

2008-02-29 Thread Dario Figueira
Simply, in a subdirectory: ADD_LIBRARY (sift_h common.hxx)
and altho the file common.hpp is there, he returns
'Cmake cannot find source file .../.../common.hxx for target sift_h
tried extensions ... .hpp ...'

if i change the CMakeLists in that subdirectory to
ADD_LIBRARY (sift_h common.hpp)
he doesn't complain at first, but when Ok is clicked
'Cmake can not determine linker language for target:sift_h'

.. wth?

the CMakeLists in ROOT is

PROJECT (SIFT)
ADD_SUBDIRECTORY (includes)
ADD_EXECUTABLE (siftpp main.cpp)
TARGET_LINK_LIBRARIES (siftpp sift_h)

-- 
Dario Figueira
___
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

[CMake] CMake + OpenCV + Visial Studio 2005 (V8)

2008-02-29 Thread Dario Figueira
In the CMakeLists: FIND_PACKAGE(OPENCV REQUIRED)

CMake runs smoothly, but when VS tries to compile, it can't find by itself
where, for instance, cv.h is
By manually adding to VS VC++ include directories where the OpenCV includes
are (which CMake knows, for instance, in the OPENCV_
INCLUDE_DIR_CV variable, that is well filled automaticly by CMake), things
work.

I was wondering if this manual step could be avoided, am i missing
something?

thank you,

-- 
Dario Figueira
___
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] CMake + OpenCV + Visial Studio 2005 (V8)

2008-02-29 Thread Dario Figueira
Dear Philip,

Didn't work :S, other considerations aside,
adding INCLUDE_DIRECTORIES(${OPENCV_INCLUDE_DIR_CV})
and confirming in the CMake GUI that OPENCV_INCLUDE_DIR_CV does point to the
correct location, Visual Studio still complains that it cannot find the
sought for 'cv.h'
fatal error C1083: Cannot open include file: 'cv.h': No such file or
directory

Thank you for your time tho =), any other ideas?

On 2/29/08, Philip Lowman [EMAIL PROTECTED] wrote:

 On Fri, Feb 29, 2008 at 2:59 PM, Dario Figueira [EMAIL PROTECTED]
 wrote:

  In the CMakeLists: FIND_PACKAGE(OPENCV REQUIRED)
 
  CMake runs smoothly, but when VS tries to compile, it can't find by
  itself where, for instance, cv.h is
  By manually adding to VS VC++ include directories where the OpenCV
  includes are (which CMake knows, for instance, in the OPENCV_
  INCLUDE_DIR_CV variable, that is well filled automaticly by CMake),
  things work.
 
  I was wondering if this manual step could be avoided, am i missing
  something?


 Dario,

 When FIND_PACKAGE(OPENCV REQUIRED) is called that should invoke the
 FindOPENCV.cmake file which I'm assuming is somewhere in your source
 tree.  This file will attempt to find the OPENCV include path (i.e. where
 it's header files are) and perhaps other things (not sure what OPENCV is, so
 I can't speculate).

 If after configuring with CMakeSetup you see an OPENCV_INCLUDE_DIR_CV
 variable in the cache that likely needs to be pointed to where the cv.hfile 
 is.  Assuming that that variable is being pointed to the proper
 location of where OPENCV is, you'll need to make sure that somewhere in the
 CMakeLists.txt file after the FIND_PACKAGE(OPENCV REQUIRED) line that you
 call:

 INCLUDE_DIRECTORIES(${OPENCV_INCLUDE_DIR_CV})

 (This assumes that you're OK with adding OPENCV to your include path for
 all of your targets)



 --
 Philip Lowman




-- 
Dario Figueira - IST nº 54545 - Delegado 5º Ano de MEEC
no google ^^ [EMAIL PROTECTED]
___
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake