Skip to content

Commit

Permalink
Correct license in config.test
Browse files Browse the repository at this point in the history
According to QUIP-18 [1], all build system files should be
BSD-3-Clause

[1]: https://contribute.qt-project.org/quips/18

Pick-to: 6.7
Task-number: QTBUG-121787
Change-Id: I06880d91e4c6f8d7a92d249f3d216b2bc82fdeed
Reviewed-by: Joerg Bornemann <[email protected]>
  • Loading branch information
lugerard committed Feb 20, 2024
1 parent 657e0ec commit d478ca5
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion config.tests/arch/arch.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (C) 2016 The Qt Company Ltd.
// Copyright (C) 2016 Intel Corporation.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// SPDX-License-Identifier: BSD-3-Clause

#define QGLOBAL_H
#include "../../src/corelib/global/archdetect.cpp"
Expand Down
2 changes: 1 addition & 1 deletion config.tests/binary_for_strip/lib1.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
// SPDX-License-Identifier: BSD-3-Clause

int libfunc() { return 0; }
2 changes: 1 addition & 1 deletion config.tests/precompile_header/header.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// SPDX-License-Identifier: BSD-3-Clause
#ifndef HEADER_H
#define HEADER_H

Expand Down
2 changes: 1 addition & 1 deletion config.tests/precompile_header/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// SPDX-License-Identifier: BSD-3-Clause
#ifndef HEADER_H
# error no go
#endif
Expand Down
2 changes: 1 addition & 1 deletion config.tests/static_link_order/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
// SPDX-License-Identifier: BSD-3-Clause

void staticLibFunc1();

Expand Down
2 changes: 1 addition & 1 deletion config.tests/static_link_order/objlib.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
// SPDX-License-Identifier: BSD-3-Clause

void staticLibFunc2();

Expand Down
2 changes: 1 addition & 1 deletion config.tests/static_link_order/staticlib1.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
// SPDX-License-Identifier: BSD-3-Clause

void objLibFunc();

Expand Down
2 changes: 1 addition & 1 deletion config.tests/static_link_order/staticlib2.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
// SPDX-License-Identifier: BSD-3-Clause

void staticLibFunc2() {
}
2 changes: 1 addition & 1 deletion config.tests/x86_simd/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (C) 2017 Intel Corporation.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// SPDX-License-Identifier: BSD-3-Clause

// All of our supported compilers support <immintrin.h>
#include <immintrin.h>
Expand Down
2 changes: 1 addition & 1 deletion config.tests/x86intrin/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (C) 2022 Intel Corporation.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// SPDX-License-Identifier: BSD-3-Clause

#include <immintrin.h>

Expand Down

0 comments on commit d478ca5

Please sign in to comment.