tizen beta release
[framework/web/webkit-efl.git] / Tools / qmake / mkspecs / features / force_static_libs_as_shared.prf
1 # -------------------------------------------------------------------
2 # Feature to allow speeding up link times for debug builds by avoiding
3 # re-linking the static libraries into the one big shared library.
4 #
5 # See 'Tools/qmake/README' for an overview of the build system
6 # -------------------------------------------------------------------
7
8 contains(TEMPLATE, lib) {
9     contains(CONFIG, staticlib) {
10        CONFIG -= hide_symbols
11        CONFIG -= staticlib
12        CONFIG += rpath
13        DESTDIR = $${ROOT_BUILD_DIR}/lib
14     }
15 }
16