forked from qt-creator/qt-creator
		
	Change-Id: Id06a24e1c17eea3f7e4d5231e68ade49cdf775f4 Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			397 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			397 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
import QmlProject 1.1
 | 
						|
 | 
						|
Project {
 | 
						|
    mainFile: "gridlayout.qml"
 | 
						|
 | 
						|
    /* Include .qml, .js, and image files from current directory and subdirectories */
 | 
						|
    QmlFiles {
 | 
						|
        directory: "."
 | 
						|
    }
 | 
						|
    JavaScriptFiles {
 | 
						|
        directory: "."
 | 
						|
    }
 | 
						|
    ImageFiles {
 | 
						|
        directory: "."
 | 
						|
    }
 | 
						|
    /* List of plugin directories passed to QML runtime */
 | 
						|
    // importPaths: [ "../exampleplugin" ]
 | 
						|
}
 |