forked from qt-creator/qt-creator
		
	Change-Id: I19d3434ebedf7511e8e2ddd79455f6e64f9d4953 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			QML
		
	
	
	
	
	
| import qbs.base 1.0
 | |
| 
 | |
| Product {
 | |
|     type: ["installed_content"]
 | |
|     name: "QtComponents"
 | |
| 
 | |
|     Group {
 | |
|         qbs.installDir: "lib/qtcreator/qtcomponents/"
 | |
|         fileTags: ["install"]
 | |
|         files: [
 | |
|             "Button.qml",
 | |
|             "ButtonRow.qml",
 | |
|             "CheckBox.qml",
 | |
|             "ChoiceList.qml",
 | |
|             "ContextMenu.qml",
 | |
|             "Dial.qml",
 | |
|             "Frame.qml",
 | |
|             "GroupBox.qml",
 | |
|             "Menu.qml",
 | |
|             "MenuItem.qml",
 | |
|             "ProgressBar.qml",
 | |
|             "RadioButton.qml",
 | |
|             "ScrollArea.qml",
 | |
|             "ScrollBar.qml",
 | |
|             "Slider.qml",
 | |
|             "SpinBox.qml",
 | |
|             "SplitterRow.qml",
 | |
|             "Switch.qml",
 | |
|             "Tab.qml",
 | |
|             "TabBar.qml",
 | |
|             "TabFrame.qml",
 | |
|             "TableColumn.qml",
 | |
|             "TableView.qml",
 | |
|             "TextArea.qml",
 | |
|             "TextField.qml",
 | |
|             "ToolBar.qml",
 | |
|             "ToolButton.qml",
 | |
|             "qmldir",
 | |
|         ]
 | |
|     }
 | |
| 
 | |
|     Group {
 | |
|         qbs.installDir: "lib/qtcreator/qtcomponents/custom"
 | |
|         fileTags: ["install"]
 | |
|         prefix: "custom/"
 | |
|         files: [
 | |
|             "BasicButton.qml",
 | |
|             "Button.qml",
 | |
|             "ButtonColumn.qml",
 | |
|             "ButtonGroup.js",
 | |
|             "ButtonRow.qml",
 | |
|             "CheckBox.qml",
 | |
|             "ChoiceList.qml",
 | |
|             "components.pro",
 | |
|             "GroupBox.qml",
 | |
|             "ProgressBar.qml",
 | |
|             "Slider.qml",
 | |
|             "SpinBox.qml",
 | |
|             "SplitterRow.qml",
 | |
|             "TextField.qml",
 | |
|             "qmldir",
 | |
|         ]
 | |
|     }
 | |
| 
 | |
|     Group {
 | |
|         qbs.installDir: "lib/qtcreator/qtcomponents/custom/behaviors"
 | |
|         fileTags: ["install"]
 | |
|         files: [
 | |
|             "custom/behaviors/ButtonBehavior.qml",
 | |
|             "custom/behaviors/ModalPopupBehavior.qml",
 | |
|         ]
 | |
|     }
 | |
| 
 | |
|     Group {
 | |
|         qbs.installDir: "lib/qtcreator/qtcomponents/custom/private"
 | |
|         fileTags: ["install"]
 | |
|         files: [
 | |
|             "custom/private/ChoiceListPopup.qml",
 | |
|         ]
 | |
|     }
 | |
| 
 | |
|     Group {
 | |
|         qbs.installDir: "lib/qtcreator/qtcomponents/images"
 | |
|         fileTags: ["install"]
 | |
|         files: [
 | |
|             "images/folder_new.png",
 | |
|         ]
 | |
|     }
 | |
| }
 | |
| 
 |