cyclonedds-python
cyclonedds-python copied to clipboard
custom output directory for `ildpy`.
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