diff options
author | michel_j <michel_j@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-06-25 16:09:27 +0000 |
---|---|---|
committer | michel_j <michel_j@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-06-25 16:09:27 +0000 |
commit | 9c8c2a15b5c8af8ecc0353d5582368524979459a (patch) | |
tree | 4aeedd6e44108cb39fd15d255d14519806d6992e /examples/ASX/CCM_App | |
parent | 002f5e6075e8f3610b63134cdf721dee2c26a597 (diff) | |
download | ATCD-9c8c2a15b5c8af8ecc0353d5582368524979459a.tar.gz |
Wed Jun 25 11:00:00 2003 Justin Michel <michel_j@ociweb.com>
Diffstat (limited to 'examples/ASX/CCM_App')
-rw-r--r-- | examples/ASX/CCM_App/ASX_CCM_App.mpc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/ASX/CCM_App/ASX_CCM_App.mpc b/examples/ASX/CCM_App/ASX_CCM_App.mpc new file mode 100644 index 00000000000..c516b12d127 --- /dev/null +++ b/examples/ASX/CCM_App/ASX_CCM_App.mpc @@ -0,0 +1,23 @@ +project(*Lib) : acelib { + sharedname = ccm_app + Source_Files { + CCM_App.cpp + } +} + +project(*Server) : aceexe { + exename = server + after += ASX_CCM_App_Lib + Source_Files { + SC_Server.cpp + } +} + +project(*Client) : aceexe { + exename = client + after += ASX_CCM_App_Server + Source_Files { + SC_Client.cpp + } +} + |