Add .get_file_contents() to Value() nodes
[scons.git] / examples / msi_packaging / SConstruct
1 #\r
2 # Build a minimal msi installer with two features.\r
3 #\r
4 \r
5 f1 = Install( '/bin/', File('main.exe') )\r
6 f2 = Install( '/lib/', File('helloworld.dll') )\r
7 f3 = Install( '/doc/', File('README') )\r
8 \r
9 Tag( f2, x_msi_feature = 'Resuable Components' )\r
10 Tag( f3, 'doc' )\r
11 \r
12 Package( projectname    = 'helloworld',\r
13          version        = '1.0',\r
14          packageversion = '1',\r
15          license        = 'gpl',\r
16          type           = 'msi',\r
17          vendor         = 'Nanosoft',\r
18          summary        = 'A HelloWorld implementation',\r
19          source         = [ f1, f2, f3 ], )\r