home › Forums › # Technical Support › Cannot get Fuzzylite working with Visual Studio on Win 64
- This topic has 17 replies, 3 voices, and was last updated 8 years, 8 months ago by
Juan Rada-Vilela (admin).
-
AuthorPosts
-
April 10, 2015 at 16:47 #1752
Juan Rada-Vilela (admin)
KeymasterHi,
once you install visual studio, you will find a folder in your start menu called visual studio or something. Inside, you will find a special Terminal/Console/Command Line that automatically executes some BAT file loading up the required configuration of Visual Studio, and therein you will be able to call nmake.
April 10, 2015 at 17:24 #1753Unknown
MemberApril 10, 2015 at 17:27 #1754Juan Rada-Vilela (admin)
KeymasterHi,
I think in Developer Command Prompt, or either of the Native Tools Command Prompt, you should be able to execute the command
nmake
. Else, please find the command in your hard drive. Same for cmake.April 10, 2015 at 17:29 #1755Unknown
MemberApril 10, 2015 at 17:43 #1756Juan Rada-Vilela (admin)
KeymasterHI,
I am sorry, but I do not know what those errors are. Please, make sure you can compile in console first. All you need is to compile in console and the use the resulting libraries in your VS project.
As I mentioned before, please make sure you remove “-pedantic -Werror” (Linux) and “/Wx” (Windows) from the CMakeLists.txt script.
You should build fuzzylite using the build.bat file in the fuzzylite folder.
April 10, 2015 at 17:43 #1757Juan Rada-Vilela (admin)
KeymasterHI,
I am sorry, but I do not know what those errors are. Please, make sure you can compile in console first. All you need is to compile in console and the use the resulting libraries in your VS project.
As I mentioned before, please make sure you remove “-pedantic -Werror” (Linux) and “/Wx” (Windows) from the CMakeLists.txt script.
You should build fuzzylite using the build.bat file in the fuzzylite folder.
April 10, 2015 at 18:45 #1758Unknown
MemberHi Juan,
Thank you very much for your quick responses.
NMake command is working for me now. But Im getting a new error when I run build.bat.
It says “NMAKE : fatal error U1064: MAKEFILE not found and no target specified”How can I solve this.
April 10, 2015 at 19:24 #1759Juan Rada-Vilela (admin)
KeymasterHi,
it seems build.bat is not finding CMake from command line.
Make sure you can run cmake from command line. If you cannot, you will need to find the way to have the command CMake available. I would guess you need modify the environmental variable
PATH
to something likePATH=...\ProgramFiles\CMake\bin
and run the console again. You can investigate how to do this. Once you have cmake available, you should be able to build fuzzylite using build.bat.Cheers.
-
AuthorPosts
- You must be logged in to reply to this topic.