;-------------------------------------------------- namespace ---------------------------------------------------- !include MUI.nsh !include LogicLib.nsh !include Sections.nsh ;----------------------------------------------------------------------------------------------------------------- ;-------------------------------------------- constants, variables ----------------------------------------------- ;----------------------------------------------------------------------------------------------------------------- ;------------------------------------------------- constructor --------------------------------------------------- # name the installer outFile "Installer.exe" XPStyle on ;----------------------------------------------------------------------------------------------------------------- ;---------------------------------------------------- pages ------------------------------------------------------ !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_INSTFILES ;----------------------------------------------------------------------------------------------------------------- ;--------------------------------------------------- sections ----------------------------------------------------- Section "Install Core Files" Section1 Call Hi SectionEnd Section "Install MySQL" Section2 SectionEnd Function Hi ${IfNot} ${SectionIsSelected} ${Section1} ${AndIfNot} ${SelectionIsSelected} ${Section2} MessageBox MB_OK "you have not selected." ${EndIf} FunctionEnd ;-----------------------------------------------------------------------------------------------------------------