1 | # $Id: .scm-settings 93115 2022-01-01 11:31:46Z 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-2022 Oracle Corporation
|
---|
14 | #
|
---|
15 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
16 | # available from http://www.virtualbox.org. This file is free software;
|
---|
17 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
18 | # General Public License (GPL) as published by the Free Software
|
---|
19 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
20 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
21 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
22 | #
|
---|
23 |
|
---|
24 |
|
---|
25 | #
|
---|
26 | # Global settings.
|
---|
27 | #
|
---|
28 | # Only consider directories and files that are part of a SVN working set.
|
---|
29 | #
|
---|
30 | --only-svn-dirs
|
---|
31 | --only-svn-files
|
---|
32 | --set-svn-eol
|
---|
33 | --set-svn-executable
|
---|
34 | --set-svn-keywords
|
---|
35 |
|
---|
36 | #
|
---|
37 | # Directories to ignore.
|
---|
38 | #
|
---|
39 | # These are simple string patterns (see iprt/string.h) and we'll match both the
|
---|
40 | # base name as well as the absolute path of each directory we consider for
|
---|
41 | # recursion against these patterns.
|
---|
42 | #
|
---|
43 | --filter-out-dirs ".svn"
|
---|
44 | --filter-out-dirs "/*out*/."
|
---|
45 | --filter-out-dirs "/webtools/."
|
---|
46 | --filter-out-dirs "/*kBuild*/."
|
---|
47 | --filter-out-dirs "/debian/."
|
---|
48 | --filter-out-dirs "/SlickEdit/."
|
---|
49 | --filter-out-dirs "/src/libs/*/."
|
---|
50 |
|
---|
51 |
|
---|
52 | #
|
---|
53 | # Files to ignore.
|
---|
54 | #
|
---|
55 | # Same format as for the directories, except that we'll also apply them to
|
---|
56 | # files specified directly on the command line.
|
---|
57 | #
|
---|
58 | --filter-out-files "/vslick.h"
|
---|
59 | --filter-out-files "*/PkgInfo"
|
---|
60 | --filter-out-files "*/*-PkgInfo"
|
---|
61 | --filter-out-files "*.plist"
|
---|
62 | --filter-out-files "*/Doxyfile*"
|
---|
63 | --filter-out-files "*/COPYING"
|
---|
64 | --filter-out-files "*/COPYING.LIB"
|
---|
65 | --filter-out-files "*/COPYING.CDDL"
|
---|
66 | --filter-out-files "*.desktop"
|
---|
67 |
|
---|
68 |
|
---|
69 | #
|
---|
70 | # Header guards are by default relative to the parent directory.
|
---|
71 | #
|
---|
72 | --guard-prefix VBOX_INCLUDED_SRC_
|
---|
73 | --guard-relative-to-dir {parent}
|
---|
74 | --fix-header-guard-endif
|
---|
75 |
|
---|