Cmake build script

Hello everyone, I just wanted to ask if anyone else had trouble building the synfig binaries using the 2-build-cmake.sh script on linux. I setup a virtual machine environment with nothing on it just to make sure that the problem wasnt with me and it still gives me an error. The error seems to be related to a missing file called process.h.

Anyone else run into this issue?

1 Like

I got this error when trying to build using that same script

Maybe you could do the standard CMake way of building a project ie., on your synfig project directory use the terminal program to

  1. Generate build files
    cmake -B build-dir -DCMAKE_BUILD_TYPE=Debug

  2. Then build
    cmake --build build-dir/ -j 4

  3. To run synfigstudio
    ./build-dir/output/Debug/bin/synfigstudio

1 Like