I am experiencing an issue with the opendds_idl tool on Windows 10.
I have generated the OpenDDS libraries and tools with Visual Studio 2015 from OpenDDS source code with static linking mode enabled and x64 platform.
With the command line
opendds_idl file.idl
I got an error
c1: fatal error C1083: Cannot open source file : '' : No such file or directory
tao-idli_2HJC0I.cpp
opendds_idl: preprocessor "CL.EXE" returned with an error
The IDL file content :
module BasicIOTest
{
#pragma DCPS_DATA_TYPE "BasicIOTest::TestData"
#pragma DCPS_DATA_KEY "BasicIOTest::TestData id"
struct TestData
{
long id;
string text;
};
};