Hello, Try this - worked for me. But there must be surely a better way of doing it...
mkdir /tmp/ocsync-build cd /tmp/ocsync-build cmake -DCMAKE_BUILD_TYPE=Debug ~/ownCloud/src/ocsync-0.70.90 make mkdir /tmp/mirall-build cd mirall-build # workaround include path problem (there should be a better way!) mkdir /tmp/csync-include cp /tmp/csync-build/csync_version.h /tmp/csync-include cp ~/ownCloud/src/ocsync-0.70.90/src/*.h /tmp/csync-include cmake -DCMAKE_BUILD_TYPE="Debug" ~/ownCloud/src/mirall-1.3.0beta1 -DCSYNC_BUILD_PATH=/tmp/csync-build -DCSYNC_INCLUDE_PATH=/tmp/csync-include make == On May 30, 2013, at 12:13 PM, Ibrahim MAATKI <[email protected]> wrote: > Hi I didn't understand well your solution but my error appears when I execute > the make command > but if your <<way>> fixed the issue could you please describe it further > because I didn't understood the part where you change the cmake command > >> Hi, >> >> I had a similar problem on redhat. >> >> As a workaround I copied all headers from original source directory >> csync/src/*.h + csync_version.h from cmake build directory into a single >> place and then set the path: >> >> cmake -DCSYNC_INCLUDE_PATH=…. >> >> to cmake mirall >> >> kuba >> /mail.kde.org/mailman/listinfo/owncloud > > _______________________________________________ > Owncloud mailing list > [email protected] > https://mail.kde.org/mailman/listinfo/owncloud _______________________________________________ Owncloud mailing list [email protected] https://mail.kde.org/mailman/listinfo/owncloud
