Add /usr/include/Imath to includes

Issue #57 closed
Red created an issue

I am unable to compile the latest version of Fractorium on Gentoo because /usr/include/Imath is not in the includes for the project.

Comments (8)

  1. Matt Feemster repo owner

    I believe that has to do with OpenEXR, right? Which version are you using? Recent versions of OpenEXR changed around their includes.

  2. Matt Feemster repo owner

    Ok, would you be willing to make a PR with the fixes in it? I can give you PR permissions if so.

  3. Red reporter

    I just hand-edited every Makefile in the subdirectory to add -I/usr/include/Imath to INCPATH or whatever it was.

    I don’t really know how this build system works.

  4. Matt Feemster repo owner

    I just added the following code to defaults.pri. Please update your code and let me know if it builds correctly on your end.

    exists( /usr/include/Imath ) {
    INCLUDEPATH += /usr/include/Imath
    }

  5. Log in to comment