diff options
Diffstat (limited to 'modules/CIAO/tests/CIDL/CodeGen/Basic.mpc')
-rw-r--r-- | modules/CIAO/tests/CIDL/CodeGen/Basic.mpc | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/modules/CIAO/tests/CIDL/CodeGen/Basic.mpc b/modules/CIAO/tests/CIDL/CodeGen/Basic.mpc new file mode 100644 index 00000000000..35f827366be --- /dev/null +++ b/modules/CIAO/tests/CIDL/CodeGen/Basic.mpc @@ -0,0 +1,80 @@ +// $Id$ +// This file is generated with "generate_component_mpc.pl -n Basic" + +project(Basic_idl_gen) : componentidldefaults { + custom_only = 1 + idlflags += -Wb,stub_export_macro=BASIC_STUB_Export \ + -Wb,stub_export_include=Basic_stub_export.h \ + -Wb,skel_export_macro=BASIC_SKEL_Export \ + -Wb,skel_export_include=Basic_skel_export.h + + IDL_Files { + Basic.idl + } +} + +project(Basic_lem_gen) : componentidldefaults { + custom_only = 1 + after += Basic_idl_gen + idlflags += -Wb,stub_export_macro=BASIC_STUB_Export \ + -Wb,stub_export_include=Basic_stub_export.h \ + -Wb,skel_export_macro=BASIC_SKEL_Export \ + -Wb,skel_export_include=Basic_skel_export.h + + IDL_Files { + BasicE.idl + } +} + +project(Basic_stub) : ccm_stub { + after += Basic_lem_gen + libs += + + sharedname = Basic_stub + dynamicflags = BASIC_STUB_BUILD_DLL + + IDL_Files { + } + + Source_Files { + BasicC.cpp + BasicEC.cpp + } + + Header_Files { + BasicC.h + Basic_stub_export.h + } + + Inline_Files { + BasicC.inl + } +} + + +project(Basic_skel) : ciao_executor { + after += Basic_stub + sharedname = Basic_skel + libs += Basic_stub + + + dynamicflags = BASIC_SKEL_BUILD_DLL + + IDL_Files { + } + + Source_Files { + BasicS.cpp + } + + Header_Files { + BasicS.h + Basic_skel_export.h + } + + Inline_Files { + BasicS.inl + } +} + + |