Welcome, Guest
Username: Password: Remember me
Discussions for CodeTyphon Object Pascal Programming Language
  • Page:
  • 1

TOPIC:

How to declare a string constant in project parameters? 12 hours 14 minutes ago #18933

  • Roman
  • Roman's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 113
  • Thank you received: 0
I want to use this construction:
{$if defined(VendorStr)}
const Vendor = VendorStr; // ????
{$else}
const Vendor = 'Unknown';
{$endif}

Than I add user definition to project parameters: -dVendorStr:='Self'
However, it does not work...

What should I do to get the desired result?

In C/C++ I use preprocessor directive ## to convert macros to string literal... 

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

Last edit: by Roman.

How to declare a string constant in project parameters? 11 hours 24 minutes ago #18934

  • Roman
  • Roman's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 113
  • Thank you received: 0
If you add the -Sm parameter, then everything compiles, but with very strange effects for Cyrillic strings, for example, with -dVendorStr:='это это' compiles successfully, but -dVendorStr:='этоэто' no longer compiles... In addition, it is unclear in what encoding this string constant is obtained...

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

How to declare a string constant in project parameters? 10 hours 47 minutes ago #18935

  • Matis A.
  • Matis A.'s Avatar
  • Offline
  • Moderator
  • Moderator
  • Posts: 1199
  • Thank you received: 186
Please look here  
PilotLogic Core Programmer

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

  • Page:
  • 1