My problem is I do have that font in the final package. It just can't find it. This is how I compile it:
Code: Select all
cmake \
-DAPPLICATIONS_DIR=/usr/share/applications \
-DBINDIR=/usr/bin \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DDATADIR=/usr/share/spring \
-DLIBDIR=/usr/lib \
-DMIME_DIR=/usr/share/mime \
-DPIXMAPS_DIR=/usr/share/pixmaps \
..
make
make install
And this output:Failed to load font: fonts/FreeSansBold.otf
Code: Select all
[f=0000000] Couldn't find font 'fonts/FreeSansBold.otf'.
[f=0000000] Couldn't find font 'fonts/FreeSansBold.otf'.
[f=0000000] Incorrect/Missing content: Failed to load font: fonts/FreeSansBold.otf
PS: I have so many options because the way I had it before wasn't working as I expected it to:
Code: Select all
cmake
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DDATADIR=share/spring \
..