cyclonedds-python icon indicating copy to clipboard operation
cyclonedds-python copied to clipboard

custom output directory for `ildpy`.

Open Splinter1984 opened this issue 1 year ago • 0 comments

As mention in #198 idlc -l py command ignore -o option. With this PR we able to set output directory for compiled files.

module HelloWorldData
{
  module Tmp 
  {
    struct Msg
    {
      @key
      long userID;
      string message;
    };
  };
};
$ idlc -l py -o python_files helloworld.idl
$ tree python_files
python_files/
└── HelloWorldData
    ├── __init__.py
    └── Tmp
        ├── _helloworld.py
        └── __init__.py

2 directories, 3 files

Splinter1984 avatar Nov 09 '23 10:11 Splinter1984