Announcement

Collapse
No announcement yet.

cmake commands

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    cmake commands

    Hi, i'd like to know the cmake commands for installing windeco. I tried cmake CMakeLists.txt, make, then make install but it didn't work. I got past the first command though. Did I execute the right sequence of commands or I missed some?

    #2
    Re: cmake commands

    Which windeco are you trying to install? Is there a README or INSTALL file included in the package?

    Often running plain 'cmake' in the extracted directory will suffice, you may need to include the path to the directory if building in another directory. Most common case is creating a 'build' subdirectory, in which case you can use 'cmake ..'.

    A common option you may want/need to give cmake is the install prefix, the following will install under /usr/ in kubuntu: 'cmake -DCMAKE_INSTALL_PREFIX=`kde-config --prefix`'

    Comment

    Working...
    X