Changeset 892


Ignore:
Timestamp:
Jul 14, 2011, 11:02:03 PM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

configure.cmd: Added support for setting QLibraryInfo::ImportsPath through the 'importdir' command line option.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.cmd

    r879 r892  
    344344    G.QT_INSTALL_BINS = ""
    345345    G.QT_INSTALL_PLUGINS = ""
     346    G.QT_INSTALL_IMPORTS = ""
    346347    G.QT_INSTALL_DATA = ""
    347348    G.QT_INSTALL_TRANSLATIONS = ""
     
    445446                    when (a == "plugindir") then
    446447                        opt = 'G.QT_INSTALL_PLUGINS'
     448                    when (a == "importdir") then
     449                        opt = 'G.QT_INSTALL_IMPORTS'
    447450                    when (a == "demosdir") then
    448451                        opt = 'G.QT_INSTALL_DEMOS'
     
    730733    if (G.QT_INSTALL_PLUGINS == "") then
    731734        G.QT_INSTALL_PLUGINS = "plugins"
     735    /* imports */
     736    if (G.QT_INSTALL_IMPORTS == "") then
     737        G.QT_INSTALL_IMPORTS = "imports"
    732738    /* data */
    733739    if (G.QT_INSTALL_DATA == "") then
     
    831837'#define QT_CONFIGURE_BINARIES_PATH "'CPPPath(G.QT_INSTALL_BINS)'"'G.EOL||,
    832838'#define QT_CONFIGURE_PLUGINS_PATH "'CPPPath(G.QT_INSTALL_PLUGINS)'"'G.EOL||,
     839'#define QT_CONFIGURE_IMPORTS_PATH "'CPPPath(G.QT_INSTALL_IMPORTS)'"'G.EOL||,
    833840'#define QT_CONFIGURE_DATA_PATH "'CPPPath(G.QT_INSTALL_DATA)'"'G.EOL||,
    834841'#define QT_CONFIGURE_TRANSLATIONS_PATH "'CPPPath(G.QT_INSTALL_TRANSLATIONS)'"'G.EOL||,
Note: See TracChangeset for help on using the changeset viewer.