Fuzzy logic in AI

Apparently it did not, which suprised me. However, teh problem was solved by defining in Linker dependencies absolute path leading to FuzzyLite.lib :slight_smile:

Can somebody add Makefile.am and Makefile.in to AI/FuzzyLite for linux build and add libfuzzylite.la to VCAI’s dependencies?

PS as I see, Ivan was provider of other Makefile.am and Makefile.in.
PSS I tried to build FuzzyLite with original makefile and I have to modify defs.h from:

#ifndef NAN
    static const unsigned long __nan[2] = {0xffffffff, 0x7fffffff};
    #define NAN (*(const float *) __nan)
#endif

#ifdef _MSC_VER
    #ifndef INFINITY

to:

#ifdef _MSC_VER
    #ifndef NAN
    static const unsigned long __nan[2] = {0xffffffff, 0x7fffffff};
    #define NAN (*(const float *) __nan)
    #endif

    #ifndef INFINITY