forked from qt-creator/qt-creator
		
	This manual tests shows how to add a simple context properties for the Qt Quick Designer. Change-Id: Ied47bc6acbab32d782f6827cf849711aed600821 Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			289 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			289 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
import QmlProject 1.1
 | 
						|
 | 
						|
Project {
 | 
						|
    mainFile: "main.qml"
 | 
						|
 | 
						|
    /* Include .qml, .js, and image files from current directory and subdirectories */
 | 
						|
    QmlFiles {
 | 
						|
        directory: "."
 | 
						|
    }
 | 
						|
    JavaScriptFiles {
 | 
						|
        directory: "."
 | 
						|
    }
 | 
						|
    ImageFiles {
 | 
						|
        directory: "."
 | 
						|
    }
 | 
						|
}
 |