Login  Register

Compiling in QT Creator, MSVC2013, Windows 64-bit: Error: dependent '..\..\generated\lib\libmuparser.a' does not exist.

Posted by FirstStep on Aug 26, 2016; 7:36pm
URL: https://forum.librecad.org/Compiling-in-QT-Creator-MSVC2013-Windows-64-bit-Error-dependent-generated-lib-libmuparser-a-does-not-tp5714214.html

Hi,

I am building LibreCAD on Windows 10 64-bit. I am using QT Creator with VC2013 and 2015 installed. I download the source code, added the boost paths in custom.pro, opened Librecad.pro and configured the solution as MSVC2013.

I had many errors and I succeeded in getting rid of all of them by doing these:

- In dl_writer_ascii.cpp: Change

snprintf(str,12, "%0X", value); 

To
_snprintf(str,12, "%0X", value); in both dxHex() and  dxfReal()

- In Jwwdoc.cpp, add const to all the XXXXXXX::Serialize(std::ofstream& ofstr) functions like this:

void XXXXXXX::Serialize(std::ofstream& ofstr) const <---- { .. }

Now, I only have one more error. One, more, to go.. Which is this:

Error: dependent '..\..\generated\lib\libmuparser.a' does not exist.


Could you please tell me what should I do?

I tired adding "-j 1" to the arguments, and it did not do any difference.

This is how my configuration looks like:
https://s11.postimg.org/6iiv5r09v/Capture.png

Please and thanks.