qmake Variable Reference
CONFIGThe CONFIG variable specifies project configuration and compiler options. The values will be recognized internally by qmake and have special meaning. They are as follows. These CONFIG values control compilation flags:
These options define the application/library type:
These options are used to set the compiler flags:
These options define specific things depending on the platform and/or template:
The CONFIG variable will also be checked when resolving scopes. You may assign anything to this variable. For example: CONFIG += qt console newstuff ... newstuff { SOURCES += new.cpp HEADERS += new.h } DEFINESqmake adds the values of this variable as compiler C preprocessor macros (-D option). For example: DEFINES += USE_MY_STUFF QT_DLL DEF_FILEThis is only used on Windows when using the app template. Specifies a .def file to be included in the project. DESTDIRSpecifies where to put the target file. For example: DESTDIR = ../../lib DLLDESTDIRSpecifies where to copy the target dll. DISTFILESThis variable contains a list of files to be included in the dist target. This feature is supported by UnixMake specs only. For example: DISTFILES += ../program.txt HEADERSDefines the header files for the project. qmake will generate dependency information (unless -nodepend is specified on the command line) for the specified headers. qmake will also automatically detect if moc is required by the classes in these headers, and add the appropriate dependencies and files to the project for generating and linking the moc files. For example: HEADERS = myclass.h \ login.h \ mainwindow.h See also SOURCES. INCLUDEPATHThis variable specifies the #include directories which should be searched when compiling the project. Use ';' or a space as the directory separator. For example: INCLUDEPATH = c:\msdev\include d:\stl\include FORMSThis variable specifies the .ui files (see Qt Designer) to be processed through uic before compiling. All dependencies, headers and source files required to build these .ui files will automatically be added to the project. For example: FORMS = mydialog.ui \ mywidget.ui \ myconfig.ui LEXSOURCESThis variable contains a list of lex source files. All dependencies, headers and source files will automatically be added to the project for building these lex files. For example: LEXSOURCES = lexer.l LIBSThis variable contains a list of libraries to be linked into the project. If you are more comfortable with the Unix convension of -L/-l flags you are free to use them in a cross-platform manner and qmake will do the correct thing with these libraries on Windows (namely this means passing the full path of the library to the linker). The only limitation to this is the library must exist, for qmake to find which directory a -l lib lives in. For example: unix:LIBS += -lmath -L/usr/local/lib win32:LIBS += c:\mylibs\math.lib MOC_DIRThis variable specifies the directory where all intermediate moc files should be placed. For example: unix:MOC_DIR = ../myproject/tmp win32:MOC_DIR = c:\myproject\tmp OBJECTS_DIRThis variable specifies the directory where all intermediate objects should be placed. For example: unix:OBJECTS_DIR = ../myproject/tmp win32:OBJECTS__DIR = c:\myproject\tmp UI_DIRThis variable specifies the directory where all intermediate files from uic should be placed. This variable overrides both UI_SOURCES_DIR and UI_HEADERS_DIR. For example: unix:UI_DIR = ../myproject/ui win32:UI_DIR = c:\myproject\ui UI_HEADERS_DIRThis variable specifies the directory where all declaration files (as generated by uic) should be placed. For example: unix:UI_HEADERS_DIR = ../myproject/ui/include win32:UI_HEADERS_DIR = c:\myproject\ui\include UI_SOURCES_DIRThis variable specifies the directory where all implementation files (as generated by uic) should be placed. For example: unix:UI_SOURCES_DIR = ../myproject/ui/src win32:UI_SOURCES_DIR = c:\myproject\ui\src RCC_DIRThis variable specifies the directory where all intermediate resource files should be placed. For example: unix:RCC_DIR = ../myproject/resources win32:RCC_DIR = c:\myproject\resources REQUIRESThis is a special variable processed by qmake. If the contents of this variable do not appear in CONFIG by the time this variable is assigned, then a minimal Makefile will be generated that states what dependencies (the values assigned to REQUIRES) are missing. This is mainly used in Qt's build system for building the examples. SOURCESThis variable contains the name of all source files in the project. For example: SOURCES = myclass.cpp \ login.cpp \ mainwindow.cpp See also HEADERS SUBDIRSThis variable, when used with the subdirs TEMPLATE contains the names of all subdirectories to look for a project file. For example: SUBDIRS = kernel \ tools TARGETThis specifies the name of the target file. For example: TEMPLATE = app TARGET = myapp SOURCES = main.cpp The project file above would produce an executable named myapp on unix and 'myapp.exe' on windows. TEMPLATEThis variable contains the name of the template to use when generating the project. The allowed values are:
For example: TEMPLATE = lib SOURCES = main.cpp TARGET = mylib The template can be overridden by specifying a new template type with the -t command line option. This overrides the template type after the .pro file has been processed. With .pro files that use the template type to determine how the project is built, it is necessary to declare TEMPLATE on the command line rather than use the -t option. VERSIONThis variable contains the version number of the library if the lib TEMPLATE is specified. For example: VERSION = 1.2.3 YACCSOURCESThis variable contains a list of yacc source files to be included in the project. All dependencies, headers and source files will automatically be included in the project. For example: YACCSOURCES = moc.y DESTDIR_TARGETThis variable is set internally by qmake, which is basically the DESTDIR variable with the TARGET variable appened at the end. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. DSP_TEMPLATEThis variable is set internally by qmake, which specifies where the dsp template file for basing generated dsp files is stored. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. LEXIMPLSThis variable contains a list of lex implementation files. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. LEXOBJECTSThis variable contains the names of intermediate lex object files.The value of this variable is typically handled by qmake and rarely needs to be modified. MAKEFILEThis variable specifies the name of the Makefile which qmake should use when outputting the dependency information for building a project. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. MAKEFILE_GENERATORThis variable contains the name of the Makefile generator to use when generating a Makefile. The value of this variable is typically handled internally by qmake and rarely needs to be modified. OBJECTSThis variable is generated from the SOURCES variable. The extension of each source file will have been replaced by .o (Unix) or .obj (Win32). The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. OBJMOCThis variable is set by qmake if files can be found that contain the Q_OBJECT macro. OBJMOC contains the name of all intermediate moc object files. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. PRECOMPILED_HEADERThis variable indicates the header file for creating a precompiled header file, to increase the compilation speed of a project. Precompiled headers are currently only supported on some platforms (Windows - all MSVC project types, Mac OS X - Xcode, Makefile, Unix - gcc 3.3 and up). On other platforms, this variable has different meaning, as noted below. This variable contains a list of header files that require some sort of pre-compilation step (such as with moc). The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKEThis variable contains the name of the qmake program itself and is placed in generated Makefiles. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKESPECThis variable contains the name of the qmake configuration to use when generating Makefiles. The value of this variable is typically handled by qmake and rarely needs to be modified. Use the QMAKESPEC environment variable instead. QMAKE_APP_FLAGThis variable is empty unless the app TEMPLATE is specified. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. Use the following instead: app { # Conditional code for 'app' template here } QMAKE_APP_OR_DLLThis variable is empty unless the app or dll TEMPLATE is specified. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_AR_CMDThis is used on Unix platforms only This variable contains the command for invoking the program which creates, modifies and extracts archives. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CFLAGS_DEBUGThis variable contains the flags for the C compiler in debug mode.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CFLAGS_MTThis variable contains the compiler flags for creating a multi-threaded application or when the version of Qt that you link against is a multi-threaded statically linked library. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CFLAGS_MT_DBGThis variable contains the compiler flags for creating a debuggable multi-threaded application or when the version of Qt that you link against is a debuggable multi-threaded statically linked library. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CFLAGS_MT_DLLThis is used on Windows only This variable contains the compiler flags for creating a multi-threaded dll or when the version of Qt that you link against is a multi-threaded dll. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CFLAGS_MT_DLLDBGThis is used on Windows only This variable contains the compiler flags for creating a debuggable multi-threaded dll or when the version of Qt that you link against is a debuggable multi-threaded statically linked library. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CFLAGS_RELEASEThis variable contains the compiler flags for creating a non-debuggable application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CFLAGS_SHLIBThis is used on Unix platforms only This variable contains the compiler flags for creating a shared library. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CFLAGS_THREADThis variable contains the compiler flags for creating a multi-threaded application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CFLAGS_WARN_OFFThis variable is not empty if the warn_off TEMPLATE option is specified. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CFLAGS_WARN_ONThis variable is not empty if the warn_on TEMPLATE option is specified. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CLEANThis variable contains any files which are not generated files (such as moc and uic generated files) and object files that should be removed when using "make clean". QMAKE_CXXFLAGS_DEBUGThis variable contains the C++ compiler flags for creating a debuggable application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CXXFLAGS_MTThis variable contains the C++ compiler flags for creating a multi-threaded application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CXXFLAGS_MT_DBGThis variable contains the C++ compiler flags for creating a debuggable multi-threaded application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CXXFLAGS_MT_DLLThis is used on Windows only This variable contains the C++ compiler flags for creating a multi-threaded dll. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CXXFLAGS_MT_DLLDBGThis is used on Windows only This variable contains the C++ compiler flags for creating a multi-threaded debuggable dll. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CXXFLAGS_RELEASEThis variable contains the C++ compiler flags for creating an application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CXXFLAGS_SHLIBThis variable contains the C++ compiler flags for creating a shared library. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CXXFLAGS_THREADThis variable contains the C++ compiler flags for creating a multi-threaded application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CXXFLAGS_WARN_OFFThis variable contains the C++ compiler flags for suppressing compiler warnings. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_CXXFLAGS_WARN_ONThis variable contains C++ compiler flags for generating compiler warnings. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_EXTENSION_SHLIBThis variable contains the extention for shared libraries. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_FAILED_REQUIREMENTSThis variable contains the list of requirements that were failed to be met when qmake was used. For example, the sql module is needed and wasn't compiled into Qt. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_FILETAGSThis variable contains the file tags needed to be entered into the Makefile, such as SOURCES and HEADERS. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_INCDIRThis variable contains the location of all known header files to be added to INCLUDEPATH when building an application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. POST_TARGETDEPSAll libraries that the target depends on can be listed in this variable. Some backends do not support this, these include MSVC Dsp, and ProjectBuilder .pbproj files. Generally this is support internally by these build tools, this is usefull for explicitly listing dependant static libraries. This list will go after all builtin (and $$PRE_TARGETDEPS) dependencies. PRE_TARGETDEPSAll libraries that the target depends on can be listed in this variable. Some backends do not support this, these include MSVC Dsp, and ProjectBuilder .pbproj files. Generally this is support internally by these build tools, this is usefull for explicitly listing dependant static libraries. This list will go before all builtin dependencies. QMAKE_INCDIR_OPENGLThis variable contains the location of OpenGL header files to be added to INCLUDEPATH when building an application with OpenGL support. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_INCDIR_QTThis variable contains the location of all known header file paths to be added to INCLUDEPATH when building a Qt application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_INCDIR_THREADThis variable contains the location of all known header file paths to be added to INCLUDEPATH when building a multi-threaded application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_INCDIR_X11This is used on Unix platforms only This variable contains the location of X11 header file paths to be added to INCLUDEPATH when building a X11 application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_CONSOLEThis is used on Windows only This variable contains link flags when building console programs. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_CONSOLE_DLLThis is used on Windows only This variable contains link flags when building console dlls. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_DEBUGThis variable contains link flags when building debuggable applications. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_PLUGINThis variable contains link flags when building plugins. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_QT_DLLThis variable contains link flags when building programs that use the Qt library built as a dll. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_RELEASEThis variable contains link flags when building applications for release. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_SHAPPThis variable contains link flags when building applications which are using the app template. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_SHLIBThis variable contains link flags when building shared libraries The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_SONAMEThis variable specifies the link flags to set the name of shared objects, such as .so or .dll. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_THREADThis variable contains link flags when building multi-threaded projects. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_WINDOWSThis is used on Windows only This variable contains link flags when building windows projects. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LFLAGS_WINDOWS_DLLThis is used on Windows only This variable contains link flags when building windows dll projects. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBDIRThis variable contains the location of all known library directories.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBDIR_FLAGSThis is used on Unix platforms only This variable contains the location of all library directory with -L prefixed. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. VPATHThis variable tells qmake where to search for files it cannot open. With this you may tell qmake where it may look for things like SOURCES, and if it finds an entry in SOURCES that cannot be opened it will look through the entire VPATH list to see if it can find the file on its own. See also DEPENDPATH. DEPENDPATHThis variable contains the list of all directories to look in to resolve dependencies. This will be used when crawling through included files. QMAKE_LIBDIR_OPENGLThis variable contains the location of the OpenGL library directory.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBDIR_QTThis variable contains the location of the Qt library directory.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBDIR_X11This is used on Unix platforms only This variable contains the location of the X11 library directory.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBSThis variable contains all project libraries. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_CONSOLEThis is used on Windows only This variable contains all project libraries that should be linked against when building a console application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_OPENGLThis variable contains all OpenGL libraries. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_OPENGL_QTThis variable contains all OpenGL Qt libraries.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_QTThis variable contains all Qt libraries.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_QT_DLLThis is used on Windows only This variable contains all Qt libraries when Qt is built as a dll. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_QT_OPENGLThis variable contains all the libraries needed to link against if OpenGL support is turned on. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_QT_THREADThis variable contains all the libraries needed to link against if thread support is turned on. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_RTThis is used with Borland compilers only This variable contains the runtime library needed to link against when building an application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_RTMTThis is used with Borland compilers only This variable contains the runtime library needed to link against when building a multi-threaded application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_THREADThis is used on Unix platforms only This variable contains all libraries that need to be linked against when building a multi-threaded application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_WINDOWSThis is used on Windows only This variable contains all windows libraries.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_X11This is used on Unix platforms only This variable contains all X11 libraries.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIBS_X11SMThis is used on Unix platforms only This variable contains all X11 session management libraries. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LIB_FLAGThis variable is not empty if the lib template is specified. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_LINK_SHLIB_CMDThis variable contains the command to execute when creating a shared library. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_POST_LINKThis variable contains the command to execute after linking the TARGET together. This variable is normally empty and therefore nothing is executed, additionally some backends will not support this - mostly only Makefile backends. QMAKE_PRE_LINKThis variable contains the command to execute before linking the TARGET together. This variable is normally empty and therefore nothing is executed, additionally some backends will not support this - mostly only Makefile backends. QMAKE_LN_SHLIBThis variable contains the command to execute when creating a link to a shared library. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_MAKEFILEThis variable contains the name of the Makefile to create. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_MOC_SRCThis variable contains the names of all moc source files to generate and include in the project. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_QMAKEThis variable contains the location of qmake if it is not in the path. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_QT_DLLThis variable is not empty if Qt was built as a dll. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_RUN_CCThis variable specifies the individual rule needed to build an object. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_RUN_CC_IMPThis variable specifies the individual rule needed to build an object. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_RUN_CXXThis variable specifies the individual rule needed to build an object. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_RUN_CXX_IMPThis variable specifies the individual rule needed to build an object. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_TARGETThis variable contains the name of the project target. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. QMAKE_UICThis variable contains the location of uic if it is not in the path. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. It can be used to specify arguments to uic as well, such as additional plugin paths. For example: QMAKE_UIC = uic -L /path/to/plugin RC_FILEThis variable contains the name of the resource file for the application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. RES_FILEThis variable contains the name of the resource file for the application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. SRCMOCThis variable is set by qmake if files can be found that contain the Q_OBJECT macro. SRCMOC contains the name of all the generated moc files. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. TARGET_EXTThis variable specifies the target's extension. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. TARGET_xThis variable specifies the target's extension with a major version number. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. TARGET_x.y.zThis variable specifies the target's extension with version number. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. UICIMPLSThis variable contains a list of the generated implementation files by UIC. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. UICOBJECTSThis variable is generated from the UICIMPLS variable. The extension of each file will have been replaced by .o (Unix) or .obj (Win32). The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. VER_MAJThis variable contains the major version number of the library, if the lib template is specified. VER_MINThis variable contains the minor version number of the library, if the lib template is specified. VER_PATThis variable contains the patch version number of the library, if the lib template is specified. QMAKE_EXT_MOCThis variable changes the extention used on included moc files. See also File Extensions. QMAKE_EXT_UIThis variable changes the extention used on /e Designer UI files. See also File Extensions. QMAKE_EXT_PRLThis variable changes the extention used on created PRL files. See also File Extensions, Library Dependencies. QMAKE_EXT_LEXThis variable changes the extention used on files given to lex. See also File Extensions, LEXSOURCES. QMAKE_EXT_YACCThis variable changes the extention used on files given to yacc. See also File Extensions, YACCSOURCES. QMAKE_EXT_OBJThis variable changes the extention used on generated object files. See also File Extensions. QMAKE_EXT_CPPThis variable changes the interpretation of all suffixes in this list of values as files of type C++ source code. See also File Extensions. QMAKE_EXT_HThis variable changes the interpretation of all suffixes in this list of values as files of type C header files. See also File Extensions. TRANSLATIONSThis variable contains a list of translation (.ts) files that contain translations of the user interface text into non-native languages. See the Qt Linguist Manual for more information about internationalization (i18n) and localization (l10n) with Qt. YACCIMPLSThis variable contains a list of yacc source files. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. YACCOBJECTSThis variable contains a list of yacc object files. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified. [Previous: qmake Reference] [Contents] [Next: qmake Function Reference] |
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.0 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com