Dennis,

You are missing the third part of the cmake command when you type

cmake -DCMAKE_INSTALL_PREFIX=/home/dennis/.local 

which is why you are getting the cmake error. 

You need to append either

../gnucash-3.1

or

/home/dennis/Applications/gnucash-3.1

on to the end of the cmake command separated by a blank when you enter it,
i.e.

cmake -DCMAKE_INSTALL_PREFIX=/home/dennis/.local ../gnucash-3.1

The first option above is a relative path from the build-cmake directory to
the sources directory. the ".." part works like cd .. and places you in the
applications directory then the /gnucash-3.1 places you in the gnucash-3.1
directory. 

The second is an absolute location relative to the root of the filesystem.
Either of these can be interpreted by the cmake command.

David

T



-----
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
_______________________________________________
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-----
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Reply via email to