Advertisement
Advertisement
| 07.03.2008 at 12:13PM PDT, ID: 23537899 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: |
;---------------------------------------------------------------------------- ; MODULE NAME: SW.MM ; ; $Author: USER "IT" $ ; $Revision: 1.15 $ ; $Date: 04 Jul 2008 17:10:46 $ ; $Logfile: C:/DBAREIS/Projects.PVCS/Win32/MakeMsi/TryMe.mm.pvcs $ ; ; DESCRIPTION ; ~~~~~~~~~~~ ; 1. #include "ME.MMH" ; 2. <$DirectoryTree Key="INSTALLDIR" ... ; 3. <$Files "swinst*.*" DestDir="c:\temp"> ;---------------------------------------------------------------------------- ;--- Include MAKEMSI support (with my customisations and MSI branding) ------ #define VER_FILENAME.VER TryMe.Ver ;;I only want one VER file for all samples! (this line not actually required in "tryme.mm") #include "ME.MMH" ;--- Want to debug (not common) --------------------------------------------- ;#debug on ;#Option DebugLevel=^NONE, +OpSys^ ;--- Define default location where file should install and add files -------- <$DirectoryTree Key="INSTALLDIR" Dir="c:\program files\Solidworks (makemsi sample)\<$MAKEMSI_MM_BASENAME>" CHANGE="\" PrimaryFolder="Y"> <$Files "swinst*.*" DestDir="c:\temp"> |