I'm trying to understand this so I can get a project up and running using CMake.
Let's say I have the following IDL file:
namespace HelloWorld{
[default_interface]
runtimeclass HelloWorld
{
HelloWorld();
String SayHello(String name);
}
}
What are the steps required on the command line to generate a Windows run time component that I can use?
I'm trying to understand this so I can get a project up and running using CMake.