home Forums # Technical Support How to use CMaked library of fuzzylite opensource on Windows QtCreator edition? Reply To: How to use CMaked library of fuzzylite opensource on Windows QtCreator edition?

#6316

Hi,

An extract of QtFuzzyLite.pro:


FL_HOME=../fuzzylite-master/fuzzylite
release:{
    FL_CONFIG=release
    FL_LIBRARY=fuzzylite-static
}
debug:{
    FL_CONFIG=debug
    FL_LIBRARY=fuzzylite-static-debug
}
INCLUDEPATH += . $${FL_HOME} \

LIBS *= -L$${FL_HOME}/$${FL_CONFIG}/bin
LIBS *= -l$${FL_LIBRARY}

message("FL_HOME=$${FL_HOME}")
message("FL_CONFIG=$${FL_CONFIG}")
message("FL_LIBRARY=$${FL_LIBRARY}")

some further ideas here: https://github.com/fuzzylite/fuzzylite/tree/release/examples/application

my suggestion is to start simple and build on top of that.

Cheers,

Juan.