Cmake
cmake seems like a good alternative for autogen automake a a cross-platform makefile generator. I will investigate this, but for now a couple of usable tips.
listing options
| list | |
|---|---|
Will print a list of settable options for the project to be built. For instance :
| output | |
|---|---|
To enable such an option , do
| set option | |
|---|---|
Do not forget the .. for the directory in which the sources are. And since i found espeak two times, i enabled them both, in support and in speech. The output of that command will now say.
| output | |
|---|---|
So make it and try.
debugging
Start cmake like this to get makefile including debugging information :
| debug info | |
|---|---|
The main configuration file is ../CMakeList.txt (from build) and you can follow all includes downwards from build/Makefile to see what is going wrong.