Search code examples
nsis

How can I define more than one directory variable in NSIS script?


Please note that I have created a single variable without a problem as described here, but when I try to create a second variable, I get this error:

!define: "MUI_DIRECTORYPAGE_VARIABLE" already defined!

Here is what I have setup which works for a single variable:

Var HW_DATA_DIR
!define MUI_DIRECTORYPAGE_VARIABLE $HW_DATA_DIR
// ...
!define HW_DATA "HW-Data"

## This is the title on the MyApp Directory page
!define MUI_DIRECTORYPAGE_TEXT_TOP "$(MUI_DIRECTORYPAGE_TEXT_TOP_HW)"

;Directory for App files and where config.dat will point to
!define MUI_PAGE_CUSTOMFUNCTION_PRE wel_pre
!define MUI_PAGE_CUSTOMFUNCTION_SHOW dir_pre   
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES

LangString MUI_DIRECTORYPAGE_TEXT_TOP_HW ${LANG_ENGLSH} "Setup will install \
${HW_DATA} in the following folder..."

## Sections Group 0
Function wel_pre
  StrCpy $APP_DIR "C:\${HW_DATA}"
     strcmp '$0' '1' noabort
     messagebox mb_yesno|mb_defbutton2|mb_iconquestion "Leave MyApp directories at default values of C:\${HW_DATA} and C:\${HW_WORKSPACE}?" idno noabort
     strcpy $0 2
     abort
   noabort:
     strcpy $0 1             
Functionend

Function dir_pre
     GetDlgItem $1 $HWNDPARENT 1037
     CreateFont $2 "$(^Font)" "8" "700"
     SendMessage $1 ${WM_SETFONT} $2 0
     SetCtlColors $1  '0x000000' '0xFFFFFF'

     GetDlgItem $1 $HWNDPARENT 1038
     CreateFont $2 "$(^Font)" "8" ""
     SendMessage $1 ${WM_SETFONT} $2 0
     SetCtlColors $1  '0x000000' '0xFFFFFF'                       
Functionend

!define PROG0_InstDir    "C:\${HW_DATA}"
!define PROG0_StartIndex ${PROG0}
!define PROG0_EndIndex   ${SEC0} 

SectionGroup /e "MyApp" PROG0 
Section "Main" SEC0
    CreateDirectory "$HW_DATA"
    CreateDirectory "$HW_DATA\Plugins"
    CreateDirectory "$HW_DATA\Plugins\ComputePlugin"
    CreateDirectory "$HW_DATA\Plugins\ExtensionPlugin"                                       

    File /oname=$HW_DATA\Plugins\ComputePlugin\computeplugin.xplot.dll computeplugin.xplot.dll
    File /oname=$HW_DATA\Plugins\ExtensionPlugin\hwProxyInterface.MyProApp.dll hwProxyInterface.MyProApp.dll   
SectionEnd

This is how I am attempting to add a second variable:

Var HW_DATA_DIR
!define MUI_DIRECTORYPAGE_VARIABLE $HW_DATA_DIR
Var HW_WORKSPACE_DIR
!define MUI_DIRECTORYPAGE_VARIABLE $HW_WORKSPACE_DIR
// ...
!define HW_DATA "HW-Data"
!define HW_WORKSPACE "HW-Workspaces"  

## This is the title on the MyApp Directory page
!define MUI_DIRECTORYPAGE_TEXT_TOP "$(MUI_DIRECTORYPAGE_TEXT_TOP_HW)"

;Directory for MyApp files and where config.dat will point to
!define MUI_PAGE_CUSTOMFUNCTION_PRE wel_pre
!define MUI_PAGE_CUSTOMFUNCTION_SHOW dir_pre   
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES

// ...

LangString MUI_DIRECTORYPAGE_TEXT_TOP_HW ${LANG_ENGLSH} "Setup will install \
${HW_DATA} in the following folder..."

## Sections Group 0
Function wel_pre
  StrCpy $HW_DATA_DIR "C:\${HW_DATA}" 
  StrCpy $$HW_WORKSPACE_DIR "C:\${HW_WORKSPACE}"  
     strcmp '$0' '1' noabort
     messagebox mb_yesno|mb_defbutton2|mb_iconquestion "Leave Headwave directories at default values of C:\${HW_DATA} and C:\${HW_WORKSPACE}?" idno noabort
     strcpy $0 2
     abort
   noabort:
     strcpy $0 1             
Functionend

Function dir_pre
     GetDlgItem $1 $HWNDPARENT 1037
     CreateFont $2 "$(^Font)" "8" "700"
     SendMessage $1 ${WM_SETFONT} $2 0
     SetCtlColors $1  '0x000000' '0xFFFFFF'

     GetDlgItem $1 $HWNDPARENT 1038
     CreateFont $2 "$(^Font)" "8" ""
     SendMessage $1 ${WM_SETFONT} $2 0
     SetCtlColors $1  '0x000000' '0xFFFFFF'                       
Functionend

!define PROG0_InstDir    "C:\${HW_DATA}"
!define PROG0_StartIndex ${PROG0}
!define PROG0_EndIndex   ${SEC0} 

SectionGroup /e "MyApp" PROG0 
Section "Main" SEC0
    CreateDirectory "$HW_DATA"
    CreateDirectory "$HW_DATA\Plugins"
    CreateDirectory "$HW_DATA\Plugins\ComputePlugin"
    CreateDirectory "$HW_DATA\Plugins\ExtensionPlugin"                                       

    File /oname=$HW_DATA\Plugins\ComputePlugin\computeplugin.xplot.dll computeplugin.xplot.dll
    File /oname=$HW_DATA\Plugins\ExtensionPlugin\hwProxyInterface.MyProApp.dll hwProxyInterface.MyProApp.dll   

    CreateDirectory "$HW_WORKSPACE_DIR"  
SectionEnd

See also https://nsis.sourceforge.io/Demonstrating_Page%27s_Custom_Functions_Pre_Show_Leave

https://nsis.sourceforge.io/Two_installations_in_one_installer

Does anyone have any suggestions? In my case I happen to need to create a data directory and a workspace directory for a particular application, with default values but also allowing the user to change the DATA directory and the WORKSPACE directory to custom directories in case, say, they need to be on a network drive instead of being on the default C:\ drive. TIA.


Solution

  • The directory variable define is a per-page setting and must be set just before the page macro:

    Var foo
    Var bar
    !define MUI_DIRECTORYPAGE_VARIABLE $foo
    insertmacro MUI_PAGE_DIRECTORY
    !define MUI_DIRECTORYPAGE_VARIABLE $bar
    !insertmacro MUI_PAGE_DIRECTORY