Re: Qt Creator "Run configuration" issue with LibreCAD.
Posted by
Rallaz on
Dec 16, 2011; 8:10am
URL: https://forum.librecad.org/Qt-Creator-Run-configuration-issue-with-LibreCAD-tp5076357p5079622.html
2011/12/16 ClaudeQC [via LibreCAD] <
[hidden email]>:
>
> - I just downloaded LibreCAD master from GIT, and your hack does not
> work for me on a Windows 7 Professional 64-bit computer.
> "ttf2lff" remain the default run configuration :-(
>
> Claude
>
First delete "librecad.pro.user" then open qtcreator, this file is
created by qtcreator each time you open "librecad.pro".
Cygwin is a bad idea because QT for windows is build with MinGW and, I
seem, the ABI is not compatible.
For command line build in windows you can use:
with cmd.exe:
write a batch file like:
SET PATH=%PATH%;C:\Qt\Desktop\Qt\4.7.4\mingw\bin;C:\Qt\mingw\bin
cmd.exe
with MSYS bash:
Install msys from nimgw.org
modify the configuration to add in the path the location of qmake.exe.
In bot cases is bad to add the qmake dir-path in system var "PATH" to
avoid cygwin collision.
Rallaz