API (*.tds)

From RAD Studio
Jump to: navigation, search

Go Up to File Types Index


When you build your project, RAD Studio can generate a TDS debug file:

  • When you build a C++ project for 32-bit Windows or macOS, RAD Studio generates a TDS debug file.
  • When you build a Delphi project for 32-bit Windows, RAD Studio generates a TDS debug file if you enable the Place debug information in separate TDS file option in Project > Options > Delphi Compiler > Linking.

The file name of your TDS debug file is:

  • For 32-bit Windows: <project>.tds
  • For macOS: bpl<project>.tds

When you build your project, your TDS debug file is generated by default into the following folder:

  • In packages:
    • For 32-bit Windows: C:\Users\Public\Documents\Embarcadero\Studio\22.0\Bpl
    • For macOS: C:\Users\Public\Documents\Embarcadero\Studio\22.0\Bpl\<platform>\<build configuration>
  • In other projects: C:\Users\<user>\Documents\Embarcadero\Studio\Projects\<project>\<platform>\<build configuration>

To change the output directory:

  • In Delphi, use the Package output directory option in Project > Options > Delphi Compiler.
  • In C++, use the Final output directory option in Project > Options > C++ (Shared Options).

See Also