File: sync.profile

package info (click to toggle)
qt3d-opensource-src 5.15.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 129,676 kB
  • sloc: cpp: 348,593; ansic: 12,729; python: 467; objc: 244; javascript: 158; pascal: 155; xml: 28; makefile: 25
file content (22 lines) | stat: -rw-r--r-- 1,049 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%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",
    "Qt3DAnimation" => "$basedir/src/animation",
    "Qt3DQuickAnimation" => "$basedir/src/quick3d/quick3danimation",
    "Qt3DQuickInput" => "$basedir/src/quick3d/quick3dinput",
    "Qt3DLogic" => "$basedir/src/logic",
    "Qt3DExtras" => "$basedir/src/extras",
    "Qt3DQuickExtras" => "$basedir/src/quick3d/quick3dextras",
    "Qt3DQuickScene2D" => "$basedir/src/quick3d/quick3dscene2d",
    "Qt3DCoreTest" => "$basedir/tests/auto/coretest",
);
%moduleheaders = ( # restrict the module headers to those found in relative path
);

@ignore_headers = ( "imconfig.h", "imgui.h", "imgui_internal.h", "imstb_rectpack.h", "imstb_textedit.h", "imstb_truetype.h" );

# Force generation of camel case headers for classes inside Qt3D* namespaces
$publicclassregexp = "Qt3D.*::.+";