-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SortFilterProxyModel.qbs for inclusion into Qbs projects (#89)
This can be used similary to how the .pri is used. For example, to build it as part of an existing library: import "../3rdparty/SortFilterProxyModel/SortFilterProxyModel.qbs" as SortFilterProxyModelSources Product { // ... cpp.includePaths: [ sortFilterProxyModelSources.prefix ] SortFilterProxyModelSources { id: sortFilterProxyModelSources } }
- Loading branch information
1 parent
6678acc
commit 5a93088
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import qbs | ||
|
||
Group { | ||
name: "SortFilterProxyModel" | ||
prefix: path + "/" | ||
files: [ | ||
"filters/alloffilter.cpp", | ||
"filters/alloffilter.h", | ||
"filters/anyoffilter.cpp", | ||
"filters/anyoffilter.h", | ||
"filters/expressionfilter.cpp", | ||
"filters/expressionfilter.h", | ||
"filters/filter.cpp", | ||
"filters/filter.h", | ||
"filters/filtercontainer.cpp", | ||
"filters/filtercontainer.h", | ||
"filters/filtercontainerfilter.cpp", | ||
"filters/filtercontainerfilter.h", | ||
"filters/filtersqmltypes.cpp", | ||
"filters/indexfilter.cpp", | ||
"filters/indexfilter.h", | ||
"filters/rangefilter.cpp", | ||
"filters/rangefilter.h", | ||
"filters/regexpfilter.cpp", | ||
"filters/regexpfilter.h", | ||
"filters/rolefilter.cpp", | ||
"filters/rolefilter.h", | ||
"filters/valuefilter.cpp", | ||
"filters/valuefilter.h", | ||
"proxyroles/expressionrole.cpp", | ||
"proxyroles/expressionrole.h", | ||
"proxyroles/filterrole.cpp", | ||
"proxyroles/filterrole.h", | ||
"proxyroles/joinrole.cpp", | ||
"proxyroles/joinrole.h", | ||
"proxyroles/proxyrole.cpp", | ||
"proxyroles/proxyrole.h", | ||
"proxyroles/proxyrolecontainer.cpp", | ||
"proxyroles/proxyrolecontainer.h", | ||
"proxyroles/proxyrolesqmltypes.cpp", | ||
"proxyroles/regexprole.cpp", | ||
"proxyroles/regexprole.h", | ||
"proxyroles/singlerole.cpp", | ||
"proxyroles/singlerole.h", | ||
"proxyroles/switchrole.cpp", | ||
"proxyroles/switchrole.h", | ||
"sorters/expressionsorter.cpp", | ||
"sorters/expressionsorter.h", | ||
"sorters/filtersorter.cpp", | ||
"sorters/filtersorter.h", | ||
"sorters/rolesorter.cpp", | ||
"sorters/rolesorter.h", | ||
"sorters/sorter.cpp", | ||
"sorters/sorter.h", | ||
"sorters/sortercontainer.cpp", | ||
"sorters/sortercontainer.h", | ||
"sorters/sortersqmltypes.cpp", | ||
"sorters/stringsorter.cpp", | ||
"sorters/stringsorter.h", | ||
"qqmlsortfilterproxymodel.cpp", | ||
"qqmlsortfilterproxymodel.h" | ||
] | ||
} |