forked from qt-creator/qt-creator
		
	These nicely show up in the project tree in Qt Creator then. Change-Id: I9782f5953d61940e6c2a0f61f07bb15aaeba49d9 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			381 B
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			381 B
		
	
	
	
		
			QML
		
	
	
	
	
	
import qbs.base 1.0
 | 
						|
 | 
						|
Product {
 | 
						|
    name: "QtComponents"
 | 
						|
 | 
						|
    Group {
 | 
						|
        name: "Resources"
 | 
						|
        qbs.install: true
 | 
						|
        qbs.installDir: (qbs.targetOS == "windows" ? "lib/qtcreator" : project.ide_library_path)
 | 
						|
                        + "/qtcomponents"
 | 
						|
        files: [
 | 
						|
            "*.qml",
 | 
						|
            "qmldir",
 | 
						|
            "custom",
 | 
						|
            "images"
 | 
						|
        ]
 | 
						|
    }
 | 
						|
}
 |