Pergunta

I want use fuzzylite in VS 2012. I followed the same step as given in below link : Using fuzzylite in Visual Studio 2010

but it gives error. Error - " No object file generated"

Using Cmake to compile source code of fuzzylite, it generates sln files properly. But after compiling the solution it gives error. I'm blocked because of this.

Thanks

Foi útil?

Solução

I strongly encourage you to post your problems with fuzzylite in the forums at http://www.fuzzylite.com, where I and others keep track of them and we are very happy to help you.

I believe the error you are finding is due to warning C4702 being raised during compile time. This is happening in fuzzylite v.4.0, and a solution is to add in file fl/fuzzylite.h the following line within the #ifdef FL_WINDOWS (together with the other #pragmas):

#pragma warning(disable:4702) //Ignore unreachable code

For future reference, please refer to the forums at http://www.fuzzylite.com

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top