On samedi 10 septembre 2016 11:34:24 CEST Michael wrote:
> Hi Dave,
> 
> I got it to work last night!! Long story short I had been using root to
> build it. Changed all the file permissions to my account re-did the
> cmake, make and it worked. Except when I did make install via root it
> didn't move/copy the executable to /usr/whatever did NOT feel like
> digging through the make file because I wanted to play around with it!
> 
> 
> There is an few typos in the README file:
> 
>      # cmake .. -DCMAKE_INSTALL_PREFIX=[PREFIX] [-DCMAKE_BUILD_TYPE=Debug]
>                                                            s/b the below
> -- mbw Sep 8 '16
>      cmake .. -DCMAKE_INSTALL_PREFIX=[PREFIX] -DCMAKE_BUILD_TYPE=[Debug]

The first version is correct, the second is not.

Passing just "-DCMAKE_BUILD_TYPE=" doesn't make much sense. If you specify the 
option, you should specify if you want debug or release.
But you can omit -DCMAKE_BUILD_TYPE=... altogether, then the cmakelists.txt
in rosegarden will default to "Release".

Hmm, I see, we use [...] to mean variable or optional, that's unclear. A 
better version would be

cmake .. -DCMAKE_INSTALL_PREFIX=<MYPREFIX> [-DCMAKE_BUILD_TYPE=Debug]

where <MYPREFIX> has to be replaced with your install prefix,
and where [-DCMAKE_BUILD_TYPE=Debug] means this part is optional.

Would that be clearer?

> There was a file that I had to modify:
> rosegarden/src/sound/audiostream/SimpleWavFileWriteStream.cpp
> #include <iostream>

OK, I committed that.

> Thanks for getting back to me!! BTW what's your 20 ( where do you live)?

I live in France (although I'm in Berlin this week for the KDE conference 
called Akademy).
Good thing you "translated" the "what's your 20" expression for me, I wouldn't 
have understood it :-)

-- 
David Faure, fa...@kde.org, http://www.davidfaure.fr
Working on KDE Frameworks 5


------------------------------------------------------------------------------
_______________________________________________
Rosegarden-devel mailing list
Rosegarden-devel@lists.sourceforge.net - use the link below to unsubscribe
https://lists.sourceforge.net/lists/listinfo/rosegarden-devel

Reply via email to