1 | #!/usr/bin/env kmk_ash
|
---|
2 | # $Id: common-gen-workspace.inc.sh 101276 2023-09-26 23:45:25Z vboxsync $
|
---|
3 | ## @file
|
---|
4 | # Script for generating a SlickEdit workspace.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2009-2023 Oracle and/or its affiliates.
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox base platform packages, as
|
---|
11 | # available from https://www.virtualbox.org.
|
---|
12 | #
|
---|
13 | # This program is free software; you can redistribute it and/or
|
---|
14 | # modify it under the terms of the GNU General Public License
|
---|
15 | # as published by the Free Software Foundation, in version 3 of the
|
---|
16 | # License.
|
---|
17 | #
|
---|
18 | # This program is distributed in the hope that it will be useful, but
|
---|
19 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
20 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
21 | # General Public License for more details.
|
---|
22 | #
|
---|
23 | # You should have received a copy of the GNU General Public License
|
---|
24 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
25 | #
|
---|
26 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
27 | #
|
---|
28 |
|
---|
29 | #
|
---|
30 | # Some constants.
|
---|
31 | #
|
---|
32 | MY_CAT="kmk_cat"
|
---|
33 | MY_CP="kmk_cp"
|
---|
34 | MY_MKDIR="kmk_mkdir"
|
---|
35 | MY_MV="kmk_mv"
|
---|
36 | MY_SED="kmk_sed"
|
---|
37 | MY_RM="kmk_rm"
|
---|
38 | MY_SLEEP="kmk_sleep"
|
---|
39 | MY_EXPR="kmk_expr"
|
---|
40 | MY_SVN="svn"
|
---|
41 |
|
---|
42 | #MY_SORT="kmk_cat"
|
---|
43 | MY_SORT="sort"
|
---|
44 |
|
---|
45 |
|
---|
46 | #
|
---|
47 | # Globals.
|
---|
48 | #
|
---|
49 | MY_OUT_DIRS="\
|
---|
50 | out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/${KBUILD_TYPE} \
|
---|
51 | out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/debug \
|
---|
52 | out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/release \
|
---|
53 | out/linux.amd64/debug \
|
---|
54 | out/linux.x86/debug \
|
---|
55 | out/win.amd64/debug \
|
---|
56 | out/win.x86/debug \
|
---|
57 | out/darwin.amd64/debug \
|
---|
58 | out/darwin.x86/debug \
|
---|
59 | out/haiku.amd64/debug \
|
---|
60 | out/haiku.x86/debug \
|
---|
61 | out/solaris.amd64/debug \
|
---|
62 | out/solaris.x86/debug";
|
---|
63 |
|
---|
64 |
|
---|
65 | #
|
---|
66 | # Parameters w/ defaults.
|
---|
67 | #
|
---|
68 | MY_ROOT_DIR=".."
|
---|
69 |
|
---|
70 |
|
---|
71 | ##
|
---|
72 | # Gets the absolute path to an existing directory.
|
---|
73 | #
|
---|
74 | # @param $1 The path.
|
---|
75 | my_abs_dir()
|
---|
76 | {
|
---|
77 | if test -n "${PWD}"; then
|
---|
78 | MY_ABS_DIR=`cd ${MY_ROOT_DIR}/${1} && echo ${PWD}`
|
---|
79 |
|
---|
80 | else
|
---|
81 | # old cygwin shell has no PWD and need adjusting.
|
---|
82 | MY_ABS_DIR=`cd ${MY_ROOT_DIR}/${1} && pwd | ${MY_SED} -e 's,^/cygdrive/\(.\)/,\1:/,'`
|
---|
83 | fi
|
---|
84 | if test -z "${MY_ABS_DIR}"; then
|
---|
85 | MY_ABS_DIR="${1}"
|
---|
86 | fi
|
---|
87 | }
|
---|
88 |
|
---|
89 | ##
|
---|
90 | # Gets the file name part of a path.
|
---|
91 | #
|
---|
92 | # @param $1 The path.
|
---|
93 | my_get_name()
|
---|
94 | {
|
---|
95 | SAVED_IFS=$IFS
|
---|
96 | IFS=":/ "
|
---|
97 | set $1
|
---|
98 | while test $# -gt 1 -a -n "${2}";
|
---|
99 | do
|
---|
100 | shift;
|
---|
101 | done
|
---|
102 |
|
---|
103 | IFS=$SAVED_IFS
|
---|
104 | #echo "$1"
|
---|
105 | export MY_GET_NAME=$1
|
---|
106 | }
|
---|
107 |
|
---|
108 | ##
|
---|
109 | # Gets the newest version of a library (like openssl).
|
---|
110 | #
|
---|
111 | # @param $1 The library base path relative to root.
|
---|
112 | my_get_newest_ver()
|
---|
113 | {
|
---|
114 | cd "${MY_ROOT_DIR}" > /dev/null
|
---|
115 | latest=
|
---|
116 | for ver in "$1"*;
|
---|
117 | do
|
---|
118 | if test -z "${latest}" || "${MY_EXPR}" "${ver}" ">" "${latest}" > /dev/null; then
|
---|
119 | latest="${ver}"
|
---|
120 | fi
|
---|
121 | done
|
---|
122 | if test -z "${latest}"; then
|
---|
123 | echo "error: could not find any version of: $1" >&2;
|
---|
124 | exit 1;
|
---|
125 | fi
|
---|
126 | echo "${latest}"
|
---|
127 | return 0;
|
---|
128 | }
|
---|
129 |
|
---|
130 |
|
---|
131 | ##
|
---|
132 | # Generate file entry for the specified file if it was found to be of interest.
|
---|
133 | #
|
---|
134 | # @param $1 The output file name base.
|
---|
135 | # @param $2 The file name.
|
---|
136 | # @param $3 Optional folder override.
|
---|
137 | my_file()
|
---|
138 | {
|
---|
139 | # sort and filter by file type.
|
---|
140 | case "$2" in
|
---|
141 | # drop these.
|
---|
142 | *.kup|*~|*.pyc|*.exe|*.sys|*.dll|*.o|*.obj|*.lib|*.a|*.ko)
|
---|
143 | return 0
|
---|
144 | ;;
|
---|
145 |
|
---|
146 | # by prefix or directory component.
|
---|
147 | tst*|*/testcase/*)
|
---|
148 | MY_FOLDER="$1-Testcases.lst"
|
---|
149 | ;;
|
---|
150 |
|
---|
151 | # by extension.
|
---|
152 | *.c|*.cpp|*.m|*.mm|*.pl|*.py|*.as|*.c.h|*.cpp.h|*.java)
|
---|
153 | MY_FOLDER="$1-Sources.lst"
|
---|
154 | ;;
|
---|
155 |
|
---|
156 | *.h|*.hpp|*.mm)
|
---|
157 | MY_FOLDER="$1-Headers.lst"
|
---|
158 | ;;
|
---|
159 |
|
---|
160 | *.asm|*.s|*.S|*.inc|*.mac)
|
---|
161 | MY_FOLDER="$1-Assembly.lst"
|
---|
162 | ;;
|
---|
163 |
|
---|
164 | *)
|
---|
165 | MY_FOLDER="$1-Others.lst"
|
---|
166 | ;;
|
---|
167 | esac
|
---|
168 | if test -n "$3";
|
---|
169 | then
|
---|
170 | MY_FOLDER="$1-$3.lst"
|
---|
171 | fi
|
---|
172 |
|
---|
173 | ## @todo only files which are in subversion.
|
---|
174 | # if ${MY_SVN} info "${2}" > /dev/null 2>&1; then
|
---|
175 | my_get_name "${2}"
|
---|
176 | echo ' <!-- sortkey: '"${MY_GET_NAME}"' --> <F N="'"${2}"'"/>' >> "${MY_FOLDER}"
|
---|
177 | # fi
|
---|
178 | }
|
---|
179 |
|
---|
180 | ##
|
---|
181 | # Generate file entry for the specified file if it was found to be of interest.
|
---|
182 | #
|
---|
183 | # @param $1 The output file name base.
|
---|
184 | # @param $2 The wildcard spec.
|
---|
185 | # @param $3 Optional folder override.
|
---|
186 | my_wildcard()
|
---|
187 | {
|
---|
188 | if test -n "$3"; then
|
---|
189 | MY_FOLDER="$1-$3.lst"
|
---|
190 | else
|
---|
191 | MY_FOLDER="$1-All.lst"
|
---|
192 | fi
|
---|
193 | EXCLUDES="*.log;*.kup;*~;*.bak;*.bak?;*.pyc;*.exe;*.sys;*.dll;*.o;*.obj;*.lib;*.a;*.ko;*.class;*.cvsignore;*.done;*.project;*.actionScriptProperties;*.scm-settings;*.svnpatch.rej;*.svn-base;.svn/*;*.gitignore;*.gitattributes;*.gitmodules;*.swagger-codegen-ignore;*.png;*.bmp;*.jpg;*.gif;*.jar;*.checksrc;*.clang-format;*.dir-locals.el;*.drirc;*.editorconfig;*.htaccess"
|
---|
194 | echo ' <F N="'"${2}"'/*" Recurse="1" Excludes="'"${EXCLUDES}"'"/>' >> "${MY_FOLDER}"
|
---|
195 | }
|
---|
196 |
|
---|
197 | ##
|
---|
198 | # Generate file entries for the specified sub-directory tree.
|
---|
199 | #
|
---|
200 | # @param $1 The output filename.
|
---|
201 | # @param $2 The sub-directory.
|
---|
202 | # @param $3 Optional folder override.
|
---|
203 | my_sub_tree()
|
---|
204 | {
|
---|
205 | if test -n "$MY_DBG"; then echo "dbg: my_sub_tree: ${2}"; fi
|
---|
206 |
|
---|
207 | # Skip .svn directories.
|
---|
208 | case "$2" in
|
---|
209 | */.svn|*/.svn)
|
---|
210 | return 0
|
---|
211 | ;;
|
---|
212 | esac
|
---|
213 |
|
---|
214 | # Process the files in the directory.
|
---|
215 | for f in $2/*;
|
---|
216 | do
|
---|
217 | if test -d "${f}";
|
---|
218 | then
|
---|
219 | my_sub_tree "${1}" "${f}" "${3}"
|
---|
220 | else
|
---|
221 | my_file "${1}" "${f}" "${3}"
|
---|
222 | fi
|
---|
223 | done
|
---|
224 | return 0;
|
---|
225 | }
|
---|
226 |
|
---|
227 | ##
|
---|
228 | # Generate the projects.
|
---|
229 | #
|
---|
230 | # This requires the main script to implement the my_generate_project() function.
|
---|
231 | #
|
---|
232 | # Note! The configs aren't optimal yet, lots of adjustment wrt headers left to be done.
|
---|
233 | #
|
---|
234 | my_generate_all_projects()
|
---|
235 | {
|
---|
236 | # src/VBox/Runtime
|
---|
237 | my_generate_project "IPRT" "src/VBox/Runtime" --begin-incs "include" "src/VBox/Runtime/include" --end-includes "include/iprt" "src/VBox/Runtime"
|
---|
238 |
|
---|
239 | # src/VBox/VMM
|
---|
240 | my_generate_project "VMM" "src/VBox/VMM" --begin-incs "include" "src/VBox/VMM" --end-includes "src/VBox/VMM" \
|
---|
241 | "include/VBox/vmm/cfgm.h" \
|
---|
242 | "include/VBox/vmm/cpum.*" \
|
---|
243 | "include/VBox/vmm/dbgf.h" \
|
---|
244 | "include/VBox/vmm/em.h" \
|
---|
245 | "include/VBox/vmm/gim.h" \
|
---|
246 | "include/VBox/vmm/apic.h" \
|
---|
247 | "include/VBox/vmm/gmm.*" \
|
---|
248 | "include/VBox/vmm/gvm.*" \
|
---|
249 | "include/VBox/vmm/hm*.*" \
|
---|
250 | "include/VBox/vmm/iom.h" \
|
---|
251 | "include/VBox/vmm/mm.h" \
|
---|
252 | "include/VBox/vmm/patm.*" \
|
---|
253 | "include/VBox/vmm/pdm*.h" \
|
---|
254 | "include/VBox/vmm/pgm.*" \
|
---|
255 | "include/VBox/vmm/selm.*" \
|
---|
256 | "include/VBox/vmm/ssm.h" \
|
---|
257 | "include/VBox/vmm/stam.*" \
|
---|
258 | "include/VBox/vmm/tm.h" \
|
---|
259 | "include/VBox/vmm/trpm.*" \
|
---|
260 | "include/VBox/vmm/vm.*" \
|
---|
261 | "include/VBox/vmm/vmm.*"
|
---|
262 |
|
---|
263 | # src/VBox/Additions
|
---|
264 | my_generate_project "Add-darwin" "src/VBox/Additions/darwin" --begin-incs "include" "src/VBox/Additions/darwin" --end-includes "src/VBox/Additions/darwin"
|
---|
265 | my_generate_project "Add-freebsd" "src/VBox/Additions/freebsd" --begin-incs "include" "src/VBox/Additions/freebsd" --end-includes "src/VBox/Additions/freebsd"
|
---|
266 | my_generate_project "Add-haiku" "src/VBox/Additions/haiku" --begin-incs "include" "src/VBox/Additions/haiku" --end-includes "src/VBox/Additions/haiku"
|
---|
267 | my_generate_project "Add-linux" "src/VBox/Additions/linux" --begin-incs "include" "src/VBox/Additions/linux" --end-includes "src/VBox/Additions/linux"
|
---|
268 | my_generate_project "Add-os2" "src/VBox/Additions/os2" --begin-incs "include" "src/VBox/Additions/os2" --end-includes "src/VBox/Additions/os2"
|
---|
269 | my_generate_project "Add-solaris" "src/VBox/Additions/solaris" --begin-incs "include" "src/VBox/Additions/solaris" --end-includes "src/VBox/Additions/solaris"
|
---|
270 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
271 | my_generate_project "Add-x11" "src/VBox/Additions/x11" --begin-incs "include" "src/VBox/Additions/x11" --end-includes "src/VBox/Additions/x11"
|
---|
272 | fi
|
---|
273 | my_generate_project "Add-Control" "src/VBox/Additions/common/VBoxControl" --begin-incs "include" "src/VBox/Additions/common/VBoxControl" --end-includes "src/VBox/Additions/common/VBoxControl"
|
---|
274 | my_generate_project "Add-VBoxGuest" "src/VBox/Additions/common/VBoxGuest" --begin-incs "include" "src/VBox/Additions/common/VBoxGuest" --end-includes "src/VBox/Additions/common/VBoxGuest" "include/VBox/VBoxGuest*.*"
|
---|
275 | my_generate_project "Add-Vbgl" "src/VBox/Additions/common/VBoxGuest/lib" --begin-incs "include" "src/VBox/Additions/common/VBoxGuest/lib" --end-includes "src/VBox/Additions/common/VBoxGuest/lib" "include/VBox/VBoxGuest/lib/*.*"
|
---|
276 | my_generate_project "Add-VBoxService" "src/VBox/Additions/common/VBoxService" --begin-incs "include" "src/VBox/Additions/common/VBoxService" --end-includes "src/VBox/Additions/common/VBoxService"
|
---|
277 | my_generate_project "Add-VBoxVideo" "src/VBox/Additions/common/VBoxVideo" --begin-incs "include" "src/VBox/Additions/common/VBoxVideo" --end-includes "src/VBox/Additions/common/VBoxVideo"
|
---|
278 | my_generate_project "Add-nt-Tray" "src/VBox/Additions/WINNT/VBoxTray" --begin-incs "include" "src/VBox/Additions/WINNT/include" "src/VBox/Additions/WINNT/VBoxTray" --end-includes "src/VBox/Additions/WINNT/VBoxTray"
|
---|
279 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
280 | my_generate_project "Add-cmn-pam" "src/VBox/Additions/common/pam" --begin-incs "include" "src/VBox/Additions/common/pam" --end-includes "src/VBox/Additions/common/pam"
|
---|
281 | my_generate_project "Add-cmn-test" "src/VBox/Additions/common/testcase" --begin-incs "include" "src/VBox/Additions/common/testcase" --end-includes "src/VBox/Additions/common/testcase"
|
---|
282 | mesa=$(my_get_newest_ver src/VBox/Additions/3D/mesa/mesa)
|
---|
283 | my_generate_project "Add-3D-Mesa" "${mesa}" --begin-incs "include" "${mesa}/include" --end-includes "${mesa}"
|
---|
284 | my_generate_project "Add-3D-win" "src/VBox/Additions/3D/win" --begin-incs "include" "src/VBox/Additions/3D/win/include" "${mesa}/include" --end-includes "src/VBox/Additions/3D/win"
|
---|
285 | my_generate_project "Add-nt-Graphics" "src/VBox/Additions/WINNT/Graphics" --begin-incs "include" "src/VBox/Additions/WINNT/Graphics/Video/common" "src/VBox/Additions/WINNT/include" "src/VBox/Additions/3D/win/include" "${mesa}/include" --end-includes "src/VBox/Additions/WINNT/Graphics"
|
---|
286 | my_generate_project "Add-nt-Installer" "src/VBox/Additions/WINNT/Installer" --begin-incs "include" "src/VBox/Additions/WINNT/include" --end-includes "src/VBox/Additions/WINNT/Installer"
|
---|
287 | my_generate_project "Add-nt-Mouse" "src/VBox/Additions/WINNT/Mouse" --begin-incs "include" "src/VBox/Additions/WINNT/include" --end-includes "src/VBox/Additions/WINNT/Mouse"
|
---|
288 | my_generate_project "Add-nt-SharedFolders" "src/VBox/Additions/WINNT/SharedFolders" --begin-incs "include" "src/VBox/Additions/WINNT/include" --end-includes "src/VBox/Additions/WINNT/SharedFolders"
|
---|
289 | my_generate_project "Add-nt-tools" "src/VBox/Additions/WINNT/tools" --begin-incs "include" "src/VBox/Additions/WINNT/include" --end-includes "src/VBox/Additions/WINNT/tools"
|
---|
290 | my_generate_project "Add-nt-CredProv" "src/VBox/Additions/WINNT/VBoxCredProv" --begin-incs "include" "src/VBox/Additions/WINNT/VBoxCredProv" --end-includes "src/VBox/Additions/WINNT/VBoxCredProv"
|
---|
291 | my_generate_project "Add-nt-GINA" "src/VBox/Additions/WINNT/VBoxGINA" --begin-incs "include" "src/VBox/Additions/WINNT/VBoxGINA" --end-includes "src/VBox/Additions/WINNT/VBoxGINA"
|
---|
292 | my_generate_project "Add-nt-Hook" "src/VBox/Additions/WINNT/VBoxHook" --begin-incs "include" "src/VBox/Additions/WINNT/include" --end-includes "src/VBox/Additions/WINNT/VBoxHook"
|
---|
293 | fi
|
---|
294 |
|
---|
295 | # src/VBox/Debugger
|
---|
296 | my_generate_project "Debugger" "src/VBox/Debugger" --begin-incs "include" "src/VBox/Debugger" --end-includes "src/VBox/Debugger" "include/VBox/dbggui.h" "include/VBox/dbg.h"
|
---|
297 |
|
---|
298 | # src/VBox/Devices
|
---|
299 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
300 | my_generate_project "Devices" "src/VBox/Devices" --begin-incs "include" "src/VBox/Devices" --end-includes "src/VBox/Devices" "include/VBox/pci.h" "include/VBox/pdm*.h"
|
---|
301 | fi
|
---|
302 | ## @todo split this up.
|
---|
303 |
|
---|
304 | # src/VBox/Disassembler
|
---|
305 | my_generate_project "DIS" "src/VBox/Disassembler" --begin-incs "include" "src/VBox/Disassembler" --end-includes "src/VBox/Disassembler" "include/VBox/dis*.h"
|
---|
306 |
|
---|
307 | # src/VBox/Frontends
|
---|
308 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
309 | my_generate_project "FE-VBoxAutostart" "src/VBox/Frontends/VBoxAutostart" --begin-incs "include" "src/VBox/Frontends/VBoxAutostart" --end-includes "src/VBox/Frontends/VBoxAutostart"
|
---|
310 | my_generate_project "FE-VBoxBugReport" "src/VBox/Frontends/VBoxBugReport" --begin-incs "include" "src/VBox/Frontends/VBoxBugReport" --end-includes "src/VBox/Frontends/VBoxBugReport"
|
---|
311 | my_generate_project "FE-VBoxBalloonCtrl" "src/VBox/Frontends/VBoxBalloonCtrl" --begin-incs "include" "src/VBox/Frontends/VBoxBalloonCtrl" --end-includes "src/VBox/Frontends/VBoxBalloonCtrl"
|
---|
312 | fi
|
---|
313 | my_generate_project "FE-VBoxManage" "src/VBox/Frontends/VBoxManage" --begin-incs "include" "src/VBox/Frontends/VBoxManage" --end-includes "src/VBox/Frontends/VBoxManage"
|
---|
314 | my_generate_project "FE-VBoxHeadless" "src/VBox/Frontends/VBoxHeadless" --begin-incs "include" "src/VBox/Frontends/VBoxHeadless" --end-includes "src/VBox/Frontends/VBoxHeadless"
|
---|
315 | my_generate_project "FE-VBoxSDL" "src/VBox/Frontends/VBoxSDL" --begin-incs "include" "src/VBox/Frontends/VBoxSDL" --end-includes "src/VBox/Frontends/VBoxSDL"
|
---|
316 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
317 | my_generate_project "FE-VBoxShell" "src/VBox/Frontends/VBoxShell" --begin-incs "include" "src/VBox/Frontends/VBoxShell" --end-includes "src/VBox/Frontends/VBoxShell"
|
---|
318 | my_generate_project "FE-VBoxBFE" "src/VBox/Frontends/VBoxBFE" --begin-incs "include" "src/VBox/Frontends/VBoxBFE" --end-includes "src/VBox/Frontends/VBoxBFE"
|
---|
319 | fi
|
---|
320 | FE_VBOX_WRAPPERS=""
|
---|
321 | for d in ${MY_OUT_DIRS};
|
---|
322 | do
|
---|
323 | if test -d "${MY_ROOT_DIR}/${d}/obj/VirtualBox/include"; then
|
---|
324 | FE_VBOX_WRAPPERS="${d}/obj/VirtualBox/include"
|
---|
325 | break
|
---|
326 | fi
|
---|
327 | done
|
---|
328 | if test -n "${FE_VBOX_WRAPPERS}"; then
|
---|
329 | my_generate_project "FE-VirtualBox" "src/VBox/Frontends/VirtualBox" --begin-incs "include" "${FE_VBOX_WRAPPERS}" --end-includes "src/VBox/Frontends/VirtualBox" "${FE_VBOX_WRAPPERS}/COMWrappers.cpp" "${FE_VBOX_WRAPPERS}/COMWrappers.h"
|
---|
330 | else
|
---|
331 | my_generate_project "FE-VirtualBox" "src/VBox/Frontends/VirtualBox" --begin-incs "include" --end-includes "src/VBox/Frontends/VirtualBox"
|
---|
332 | fi
|
---|
333 |
|
---|
334 | # src/VBox/GuestHost
|
---|
335 | my_generate_project "HGSMI-GH" "src/VBox/GuestHost/HGSMI" --begin-incs "include" --end-includes "src/VBox/GuestHost/HGSMI"
|
---|
336 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
337 | my_generate_project "DragAndDrop-GH" "src/VBox/GuestHost/DragAndDrop" --begin-incs "include" --end-includes "src/VBox/GuestHost/DragAndDrop"
|
---|
338 | fi
|
---|
339 | my_generate_project "ShClip-GH" "src/VBox/GuestHost/SharedClipboard" --begin-incs "include" --end-includes "src/VBox/GuestHost/SharedClipboard"
|
---|
340 |
|
---|
341 | # src/VBox/HostDrivers
|
---|
342 | my_generate_project "SUP" "src/VBox/HostDrivers/Support" --begin-incs "include" "src/VBox/HostDrivers/Support" --end-includes "src/VBox/HostDrivers/Support" "include/VBox/sup.h" "include/VBox/sup.mac"
|
---|
343 | my_generate_project "VBoxNetAdp" "src/VBox/HostDrivers/VBoxNetAdp" --begin-incs "include" "src/VBox/HostDrivers/VBoxNetAdp" --end-includes "src/VBox/HostDrivers/VBoxNetAdp" "include/VBox/intnet.h"
|
---|
344 | my_generate_project "VBoxNetFlt" "src/VBox/HostDrivers/VBoxNetFlt" --begin-incs "include" "src/VBox/HostDrivers/VBoxNetFlt" --end-includes "src/VBox/HostDrivers/VBoxNetFlt" "src/VBox/HostDrivers/win" "src/VBox/HostDrivers/darwin" "src/VBox/HostDrivers/linux" "src/VBox/HostDrivers/freebsd" "include/VBox/intnet.h"
|
---|
345 | my_generate_project "VBoxUSB" "src/VBox/HostDrivers/VBoxUSB" --begin-incs "include" "src/VBox/HostDrivers/VBoxUSB" --end-includes "src/VBox/HostDrivers/VBoxUSB" "include/VBox/usblib*.h" "include/VBox/usbfilter.h"
|
---|
346 | my_generate_project "AdpCtl" "src/VBox/HostDrivers/adpctl" --begin-incs "include" --end-includes "src/VBox/HostDrivers/adpctl"
|
---|
347 |
|
---|
348 | # src/VBox/HostServices
|
---|
349 | my_generate_project "HS-auth" "src/VBox/HostServices/auth" --begin-incs "include" "src/VBox/HostServices/auth" --end-includes "src/VBox/HostServices/auth"
|
---|
350 | my_generate_project "HS-common" "src/VBox/HostServices/common" --begin-incs "include" "src/VBox/HostServices/common" --end-includes "src/VBox/HostServices/common"
|
---|
351 | my_generate_project "GstCtl-HS" "src/VBox/HostServices/GuestControl" --begin-incs "include" "src/VBox/HostServices/GuestControl" --end-includes "src/VBox/HostServices/GuestControl"
|
---|
352 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
353 | my_generate_project "DragAndDrop-HS" "src/VBox/HostServices/DragAndDrop" --begin-incs "include" "src/VBox/HostServices/DragAndDrop" --end-includes "src/VBox/HostServices/DragAndDrop"
|
---|
354 | fi
|
---|
355 | my_generate_project "GuestProps-HS" "src/VBox/HostServices/GuestProperties" --begin-incs "include" "src/VBox/HostServices/GuestProperties" --end-includes "src/VBox/HostServices/GuestProperties"
|
---|
356 | my_generate_project "ShClip-HS" "src/VBox/HostServices/SharedClipboard" --begin-incs "include" "src/VBox/HostServices/SharedClipboard" --end-includes "src/VBox/HostServices/SharedClipboard"
|
---|
357 | my_generate_project "ShFolders-HS" "src/VBox/HostServices/SharedFolders" --begin-incs "include" "src/VBox/HostServices/SharedFolders" --end-includes "src/VBox/HostServices/SharedFolders" "include/VBox/shflsvc.h"
|
---|
358 |
|
---|
359 | # src/VBox/ImageMounter
|
---|
360 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
361 | my_generate_project "ImageMounter" "src/VBox/ImageMounter" --begin-incs "include" "src/VBox/ImageMounter" --end-includes "src/VBox/ImageMounter"
|
---|
362 | fi
|
---|
363 |
|
---|
364 | # src/VBox/Installer
|
---|
365 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
366 | my_generate_project "Installers" "src/VBox/Installer" --begin-incs "include" --end-includes "src/VBox/Installer"
|
---|
367 | fi
|
---|
368 |
|
---|
369 | # src/VBox/Main
|
---|
370 | my_generate_project "Main" "src/VBox/Main" --begin-incs "include" "src/VBox/Main/include" --end-includes "src/VBox/Main" "include/VBox/com" "include/VBox/settings.h"
|
---|
371 | ## @todo seperate webservices and Main. pick the right headers. added generated headers.
|
---|
372 |
|
---|
373 | # src/VBox/Network
|
---|
374 | my_generate_project "Net-DHCP" "src/VBox/NetworkServices/Dhcpd" --begin-incs "include" "src/VBox/NetworkServices/NetLib" --end-includes "src/VBox/NetworkServices/Dhcpd"
|
---|
375 | my_generate_project "Net-NAT" "src/VBox/NetworkServices/NAT" --begin-incs "include" "src/VBox/NetworkServices/NAT" --end-includes "src/VBox/NetworkServices/NAT" "src/VBox/Devices/Network/slirp"
|
---|
376 | my_generate_project "Net-NetLib" "src/VBox/NetworkServices/NetLib" --begin-incs "include" "src/VBox/NetworkServices/NetLib" --end-includes "src/VBox/NetworkServices/NetLib"
|
---|
377 |
|
---|
378 | # src/VBox/RDP
|
---|
379 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
380 | my_generate_project "RDP-Server" "src/VBox/RDP/server" --begin-incs "include" "src/VBox/RDP/server" --end-includes "src/VBox/RDP/server"
|
---|
381 | my_generate_project "RDP-WebClient" "src/VBox/RDP/webclient" --begin-incs "include" "src/VBox/RDP/webclient" --end-includes "src/VBox/RDP/webclient"
|
---|
382 | my_generate_project "RDP-Misc" "src/VBox/RDP" --begin-incs "include" --end-includes "src/VBox/RDP/auth" "src/VBox/RDP/tscpasswd" "src/VBox/RDP/x11server"
|
---|
383 | fi
|
---|
384 |
|
---|
385 | # src/VBox/Storage
|
---|
386 | my_generate_project "Storage" "src/VBox/Storage" --begin-incs "include" "src/VBox/Storage" --end-includes "src/VBox/Storage"
|
---|
387 |
|
---|
388 | # src/VBox/ValidationKit
|
---|
389 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
390 | my_generate_project "ValidationKit" "src/VBox/ValidationKit" --begin-incs "include" --end-includes "src/VBox/ValidationKit"
|
---|
391 | fi
|
---|
392 |
|
---|
393 | # src/VBox/ExtPacks
|
---|
394 | my_generate_project "ExtPacks" "src/VBox/ExtPacks" --begin-incs "include" --end-includes "src/VBox/ExtPacks"
|
---|
395 |
|
---|
396 | # src/bldprogs
|
---|
397 | my_generate_project "bldprogs" "src/bldprogs" --begin-incs "include" --end-includes "src/bldprogs"
|
---|
398 |
|
---|
399 | # A few things from src/lib
|
---|
400 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
401 | lib=$(my_get_newest_ver src/libs/zlib)
|
---|
402 | my_generate_project "zlib" "${lib}" --begin-incs "include" --end-includes "${lib}/*.c" "${lib}/*.h"
|
---|
403 | lib=$(my_get_newest_ver src/libs/liblzf)
|
---|
404 | my_generate_project "liblzf" "${lib}" --begin-incs "include" --end-includes "${lib}"
|
---|
405 | lib=$(my_get_newest_ver src/libs/libpng)
|
---|
406 | my_generate_project "libpng" "${lib}" --begin-incs "include" --end-includes "${lib}/*.c" "${lib}/*.h"
|
---|
407 | lib=$(my_get_newest_ver src/libs/openssl)
|
---|
408 | my_generate_project "openssl" "${lib}" --begin-incs "include" "${lib}/crypto" --end-includes "${lib}"
|
---|
409 | lib=$(my_get_newest_ver src/libs/curl)
|
---|
410 | my_generate_project "curl" "${lib}" --begin-incs "include" "${lib}/include" --end-includes "${lib}"
|
---|
411 | lib=$(my_get_newest_ver src/libs/softfloat)
|
---|
412 | my_generate_project "softfloat" "${lib}" --begin-incs "include" "${lib}/source/include" --end-includes "${lib}"
|
---|
413 | lib=$(my_get_newest_ver src/libs/libvorbis)
|
---|
414 | my_generate_project "libvorbis" "${lib}" --begin-incs "include" "${lib}/include/vorbis" --end-includes "${lib}"
|
---|
415 | lib=$(my_get_newest_ver src/libs/libogg)
|
---|
416 | my_generate_project "libogg" "${lib}" --begin-incs "include" "${lib}/include/ogg" --end-includes "${lib}"
|
---|
417 | fi
|
---|
418 |
|
---|
419 | # webtools
|
---|
420 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
421 | my_generate_project "webtools" "webtools" --begin-incs "include" "webtools/tinderbox/server/Tinderbox3" --end-includes "webtools"
|
---|
422 | fi
|
---|
423 |
|
---|
424 | # include/VBox
|
---|
425 | my_generate_project "VBoxHeaders" "include" --begin-incs "include" --end-includes "include/VBox"
|
---|
426 |
|
---|
427 | # Misc
|
---|
428 | my_generate_project "misc" "." --begin-incs "include" --end-includes \
|
---|
429 | "configure" \
|
---|
430 | "configure.vbs" \
|
---|
431 | "Config.kmk" \
|
---|
432 | "Makefile.kmk" \
|
---|
433 | "src/Makefile.kmk" \
|
---|
434 | "src/VBox/Makefile.kmk" \
|
---|
435 | "tools/env.sh" \
|
---|
436 | "tools/env.cmd" \
|
---|
437 | "tools/envSub.vbs" \
|
---|
438 | "tools/envSub.cmd" \
|
---|
439 | "tools/win/vbscript"
|
---|
440 |
|
---|
441 |
|
---|
442 | # out/x.y/z/bin/sdk/bindings/xpcom
|
---|
443 | XPCOM_INCS="src/libs/xpcom18a4"
|
---|
444 | for d in \
|
---|
445 | "out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/${KBUILD_TYPE}/dist/sdk/bindings/xpcom" \
|
---|
446 | "out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/${KBUILD_TYPE}/bin/sdk/bindings/xpcom" \
|
---|
447 | "out/linux.amd64/debug/bin/sdk/bindings/xpcom" \
|
---|
448 | "out/linux.x86/debug/bin/sdk/bindings/xpcom" \
|
---|
449 | "out/darwin.amd64/debug/dist/sdk/bindings/xpcom" \
|
---|
450 | "out/darwin.x86/debug/bin/dist/bindings/xpcom" \
|
---|
451 | "out/haiku.amd64/debug/bin/sdk/bindings/xpcom" \
|
---|
452 | "out/haiku.x86/debug/bin/sdk/bindings/xpcom" \
|
---|
453 | "out/solaris.amd64/debug/bin/sdk/bindings/xpcom" \
|
---|
454 | "out/solaris.x86/debug/bin/sdk/bindings/xpcom";
|
---|
455 | do
|
---|
456 | if test -d "${MY_ROOT_DIR}/${d}"; then
|
---|
457 | my_generate_project "SDK-xpcom" "${d}" --begin-incs "include" "${d}/include" --end-includes "${d}"
|
---|
458 | XPCOM_INCS="${d}/include"
|
---|
459 | break
|
---|
460 | fi
|
---|
461 | done
|
---|
462 |
|
---|
463 | # lib/xpcom
|
---|
464 | my_generate_project "xpcom" "src/libs/xpcom18a4" --begin-incs "include" "${XPCOM_INCS}" --end-includes "src/libs/xpcom18a4"
|
---|
465 | }
|
---|