Welcome, Guest
Username: Password: Remember me
General discussions, feature requests for CodeTyphon Project and discussions that don't fit in any of the other specific CodeTyphon forum categories.
  • Page:
  • 1

TOPIC:

Witch environmentoptions.xml ? 10 years 5 months ago #4864

  • fredvs
  • fredvs's Avatar Topic Author
  • Visitor
  • Visitor
Hello Sternas.
Im not sure about the environmentoptions.xml path...

For Linux 64 bit :
UserDir +'.typhon64/environmentoptions.xml'

For Linux 32 bit :
UserDir +'.typhon32/environmentoptions.xml'

For Windows 32 bit
ConfigDir + 'typhon32\environmentoptions.xml';

For Windows 64 bit
ConfigDir + 'typhon64\environmentoptions.xml';

Is it ok ?

Thanks

Please Log in or Create an account to join the conversation.

Last edit: by fredvs.

Witch environmentoptions.xml ? 10 years 5 months ago #4870

  • Sternas Stefanos
  • Sternas Stefanos's Avatar
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4513
  • Thank you received: 1102
Yes Sir
Windows
   {$IFDEF CPU64}       
        PrimaryConfigPath:= GetEnvironmentVariableUTF8('APPDATA')+'\typhon64';
   {$ELSE}  
        PrimaryConfigPath:= GetEnvironmentVariableUTF8('APPDATA')+'\typhon32';
   {$ENDIF}
   
 UniX
   {$IFDEF CPU64}
       PrimaryConfigPath:=ExpandFileNameUTF8('~/.typhon64');
   {$ELSE}
      PrimaryConfigPath:=ExpandFileNameUTF8('~/.typhon32');
   {$ENDIF}
PilotLogic Architect and Core Programmer
The following user(s) said Thank You: fredvs

Please Log in or Create an account to join the conversation.

Witch environmentoptions.xml ? 10 years 5 months ago #4874

  • fredvs
  • fredvs's Avatar Topic Author
  • Visitor
  • Visitor
Magnifique.

Many thanks

Please Log in or Create an account to join the conversation.

  • Page:
  • 1