1 | # $Id: .scm-settings 98108 2023-01-17 23:40:56Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Top level source code massager settings.
|
---|
4 | #
|
---|
5 | # This will be loaded when scm is pointed to any file or directory in the
|
---|
6 | # VirtualBox source tree. It will recursively load all .scm-settings files
|
---|
7 | # it find in or above directories or files it's told to work on. So,
|
---|
8 | # .scm-settings files can be placed in sub-directories in the tree to provide
|
---|
9 | # additional settins specific to that sub-tree.
|
---|
10 | #
|
---|
11 |
|
---|
12 | #
|
---|
13 | # Copyright (C) 2010-2023 Oracle and/or its affiliates.
|
---|
14 | #
|
---|
15 | # This file is part of VirtualBox base platform packages, as
|
---|
16 | # available from https://www.virtualbox.org.
|
---|
17 | #
|
---|
18 | # This program is free software; you can redistribute it and/or
|
---|
19 | # modify it under the terms of the GNU General Public License
|
---|
20 | # as published by the Free Software Foundation, in version 3 of the
|
---|
21 | # License.
|
---|
22 | #
|
---|
23 | # This program is distributed in the hope that it will be useful, but
|
---|
24 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
25 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
26 | # General Public License for more details.
|
---|
27 | #
|
---|
28 | # You should have received a copy of the GNU General Public License
|
---|
29 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
30 | #
|
---|
31 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
32 | #
|
---|
33 |
|
---|
34 |
|
---|
35 | #
|
---|
36 | # Global settings.
|
---|
37 | #
|
---|
38 | # Only consider directories and files that are part of a SVN working set.
|
---|
39 | #
|
---|
40 | --only-svn-dirs
|
---|
41 | --only-svn-files
|
---|
42 | --set-svn-eol
|
---|
43 | --set-svn-executable
|
---|
44 | --set-svn-keywords
|
---|
45 |
|
---|
46 | #
|
---|
47 | # Directories to ignore.
|
---|
48 | #
|
---|
49 | # These are simple string patterns (see iprt/string.h) and we'll match both the
|
---|
50 | # base name as well as the absolute path of each directory we consider for
|
---|
51 | # recursion against these patterns.
|
---|
52 | #
|
---|
53 | --filter-out-dirs ".svn"
|
---|
54 | --filter-out-dirs "/*out*/."
|
---|
55 | --filter-out-dirs "/kBuild/."
|
---|
56 | --filter-out-dirs "/*kBuild_*/."
|
---|
57 | --filter-out-dirs "/*kBuild.*/."
|
---|
58 | --filter-out-dirs "/*_kBuild*/."
|
---|
59 | --filter-out-dirs "/SlickEdit/."
|
---|
60 |
|
---|
61 |
|
---|
62 | #
|
---|
63 | # Files to ignore.
|
---|
64 | #
|
---|
65 | # Same format as for the directories, except that we'll also apply them to
|
---|
66 | # files specified directly on the command line.
|
---|
67 | #
|
---|
68 | --filter-out-files "/vslick.h"
|
---|
69 | --filter-out-files "/.dir-locals.el"
|
---|
70 | --filter-out-files "*/.gitignore"
|
---|
71 | --filter-out-files "*/PkgInfo"
|
---|
72 | --filter-out-files "*/*-PkgInfo"
|
---|
73 | --filter-out-files "*.crt"
|
---|
74 | --filter-out-files "*.plist"
|
---|
75 | --filter-out-files "*.provisionprofile"
|
---|
76 | --filter-out-files "*/Doxyfile*"
|
---|
77 | --filter-out-files "*/COPYING"
|
---|
78 | --filter-out-files "*/COPYING.LIB"
|
---|
79 | --filter-out-files "*/COPYING.CDDL"
|
---|
80 | --filter-out-files "*/COPYING.GPLv2"
|
---|
81 | --filter-out-files "*/COPYING.UBDL"
|
---|
82 | --filter-out-files "*.desktop"
|
---|
83 | --filter-out-files "*/.swagger-codegen-ignore"
|
---|
84 | --filter-out-files "*/.swagger-codegen/VERSION"
|
---|
85 |
|
---|
86 |
|
---|
87 | #
|
---|
88 | # Header guards are by default relative to the parent directory.
|
---|
89 | #
|
---|
90 | --guard-prefix VBOX_INCLUDED_SRC_
|
---|
91 | --guard-relative-to-dir {parent}
|
---|
92 | --fix-header-guard-endif
|
---|
93 |
|
---|