-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from yegorich/meson-spdx
Add SPDX tags to the meson files
- Loading branch information
Showing
4 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) | ||
# SPDX-FileCopyrightText: 2024 Yegor Yefremov <[email protected]> | ||
|
||
if enable_libconfig | ||
install_data( | ||
sources: 'socketcand.conf', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) | ||
# SPDX-FileCopyrightText: 2024 Matthias Weißer <[email protected]> | ||
|
||
project('socketcand', 'c', version : '0.6.1') | ||
conf = configuration_data() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) | ||
# SPDX-FileCopyrightText: 2024 Matthias Weißer <[email protected]> | ||
|
||
option('libconfig', type: 'boolean', value: false, description: 'enable support for libconfig') | ||
option('libsocketcan', type: 'boolean', value: false, description: 'enable support for libsocketcan') | ||
option('rc_script', type: 'boolean', value: false, description: 'enable creation of rc.d start script') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) | ||
# SPDX-FileCopyrightText: 2024 Matthias Weißer <[email protected]> | ||
|
||
src = [ | ||
'socketcand.c', | ||
'statistics.c', | ||
|