diff options
author | Luis Ibanez <luis.ibanez@kitware.com> | 2001-06-12 12:34:29 (GMT) |
---|---|---|
committer | Luis Ibanez <luis.ibanez@kitware.com> | 2001-06-12 12:34:29 (GMT) |
commit | d0614d75ea2fa259bed8e48226f85b0f5553cfb5 (patch) | |
tree | 55b6f78b2428f0640c82695476cf21266e6d17b6 /Source/FLTKDialog/CMakeSetupGUI.fl | |
parent | 522ff0204a48774d42f9a1de4d2ab9530f0f6994 (diff) | |
download | CMake-d0614d75ea2fa259bed8e48226f85b0f5553cfb5.zip CMake-d0614d75ea2fa259bed8e48226f85b0f5553cfb5.tar.gz CMake-d0614d75ea2fa259bed8e48226f85b0f5553cfb5.tar.bz2 |
ENH: Paths are now expanded for environment variables and made absolute.
The binary directory is created if it doesn't exist.
Diffstat (limited to 'Source/FLTKDialog/CMakeSetupGUI.fl')
-rw-r--r-- | Source/FLTKDialog/CMakeSetupGUI.fl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/FLTKDialog/CMakeSetupGUI.fl b/Source/FLTKDialog/CMakeSetupGUI.fl index 07b0d37..a62adbc 100644 --- a/Source/FLTKDialog/CMakeSetupGUI.fl +++ b/Source/FLTKDialog/CMakeSetupGUI.fl @@ -25,7 +25,7 @@ class CMakeSetupGUI {open } Fl_Input binaryPathTextInput { label {Where do you want to build the binaries: } - callback {SetBinaryPath( binaryPathTextInput->value() );} + callback {SetBinaryPath( binaryPathTextInput->value() );} selected xywh {219 50 200 20} labelsize 11 when 8 textsize 11 } Fl_Button {} { @@ -50,7 +50,7 @@ class CMakeSetupGUI {open label {Cache Values} open xywh {40 98 485 190} type BOTH_ALWAYS box DOWN_FRAME labelsize 11 align 5 when 1 resizable } { - Fl_Pack propertyListPack {selected + Fl_Pack propertyListPack { xywh {40 99 485 185} resizable } {} } @@ -72,8 +72,8 @@ class CMakeSetupGUI {open } {} Function {Show(void)} {return_type {virtual void} } {} - Function {SetBinaryPath(const char *)} {return_type {virtual void} + Function {SetBinaryPath(const char *)} {return_type {virtual bool} } {} - Function {SetSourcePath(const char *)} {return_type {virtual void} + Function {SetSourcePath(const char *)} {return_type {virtual bool} } {} } |