-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsync.profile
27 lines (25 loc) · 1 KB
/
sync.profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
%modules = ( # path to module name map
"Qt3DCore" => "$basedir/src/core",
"Qt3DRender" => "$basedir/src/render",
"Qt3DQuick" => "$basedir/src/quick3d/quick3d",
"Qt3DQuickRender" => "$basedir/src/quick3d/quick3drender",
"Qt3DInput" => "$basedir/src/input",
"Qt3DQuickInput" => "$basedir/src/quick3d/quick3dinput",
"Qt3DLogic" => "$basedir/src/logic",
);
%moduleheaders = ( # restrict the module headers to those found in relative path
);
# Force generation of camel case headers for classes inside Qt3D* namespaces
$publicclassregexp = "Qt3D.*::.+";
# Module dependencies.
# Every module that is required to build this module should have one entry.
# Each of the module version specifiers can take one of the following values:
# - A specific Git revision.
# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
#
%dependencies = (
"qtbase" => "",
"qtxmlpatterns" => "",
"qtdeclarative" => "",
"qtimageformats" => "",
);