summaryrefslogtreecommitdiffstats
path: root/src/core/config/desktop_linux.pri
blob: f8bd42ce8bbe62a5679aa02b3afb5f08dd3ae396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41

use?(gn) {
    include(common.pri)
    gn_args += \
        use_qt=true \
        is_clang=false \
        use_sysroot=false \
        enable_remoting=false \
        enable_nacl=false \
        use_kerberos=false \
        is_component_build=false \
        use_experimental_allocator_shim=false \
        use_allocator=\"none\" \
        v8_use_external_startup_data=false \
        linux_use_bundled_binutils=false \
        treat_warnings_as_errors=false

    use?(icecc) {
        gn_args += use_debug_fission=false
    }

} else {

    GYP_ARGS += "-D qt_os=\"desktop_linux\""

    include(linux.pri)

    GYP_CONFIG += \
        desktop_linux=1

    clang {
        GYP_CONFIG += werror=
        clang_full_path = $$which($${QMAKE_CXX})
        # Remove the "/bin/clang++" part.
        clang_prefix = $$section(clang_full_path, /, 0, -3)
        GYP_CONFIG += clang=1 host_clang=1 clang_use_chrome_plugins=0 make_clang_dir=$${clang_prefix}
        linux-clang-libc++: GYP_CONFIG += use_system_libcxx=1
    } else {
        GYP_CONFIG += clang=0 host_clang=0
    }
}