I am trying to get hold of the values these variables contain but I couldn't find any informations about them on the web and searching for such strings in C:\Qt folder brought up nothing.
Where are these variables defined ?
I am trying to get hold of the values these variables contain but I couldn't find any informations about them on the web and searching for such strings in C:\Qt folder brought up nothing.
Where are these variables defined ?
Using the Terminal on my Mac,
mkdir creates a directory in the current directory you are in. Let's assume my current directory is username:~/parent_directory $, if you type
mkdir code
and press enter, it will create a directory with the name codeBefore a .pro file is processed and your Makefiles are generated by qmake several other files are pre-processed based on your compiler and platform. These files have the extension .prf and .conf and are loaded from a directory called mkspecs.
The values of MKDIR and COPY_DIR variables in your Makefiles are generated by the values of QMAKE_MKDIR and QMAKE_COPY_DIR variables defined in the following files:
C:\Qt\Qt5.0.2\5.0.2\msvc2010\mkspecs\common\shell-unix.conf:
C:\Qt\Qt5.0.2\5.0.2\msvc2010\mkspecs\common\shell-win32.conf:
(As you can see I am using Qt 5.0.2 so the path might be different on your machine.)
Update for Qt 5.8
c:\Qt\5.8\mingw53_32\mkspecs\features\spec_post.prf
Windows-like:
Linux-Like: