smart_proxies_collocation.mpc

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· MPC 代码 · 共 37 行

MPC
37
字号
// -*- MPC -*-
// Smart_Proxies_Collocation.mpc,v 1.4 2004/01/01 20:04:18 jwillemsen Exp

project(*TestStubsLib): taolib_with_idl, smart_proxies {
  sharedname = Coll_Test_Stubs
  dynamicflags += MY_STUB_BUILD_DLL
  idlflags     += -Wb,stub_export_macro=MY_Stub_Export -Wb,stub_export_include=stub_export.h -Wb,skel_export_macro=Diamond_Export -Wb,skel_export_include=diamond_export.h -Gd
  Source_Files {
    DiamondC.cpp
    Smart_Proxy_Impl.cpp
  }
}

project(*DiamondLib) : taolib_with_idl, smart_proxies, portableserver {
  sharedname   = Diamond
  after        += *TestStubsLib
  libs         += Coll_Test_Stubs
  dynamicflags += DIAMOND_BUILD_DLL
  idlflags     += -Wb,stub_export_macro=MY_Stub_Export -Wb,stub_export_include=stub_export.h -Wb,skel_export_macro=Diamond_Export -Wb,skel_export_include=diamond_export.h -Gd
  Source_Files {
    Diamond_i.cpp
    DiamondS.cpp
  }
}

project(*Test): taoexe, smart_proxies, portableserver, strategies {
  after += *TestStubsLib *DiamondLib
  libs  += Coll_Test_Stubs Diamond
  Source_Files {
    Coll_Tester.cpp
    main.cpp
  }
  idl_files {
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?