diff options
author | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-03-07 13:20:46 +0000 |
---|---|---|
committer | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-03-07 13:20:46 +0000 |
commit | 62726256ead1f45160a8266f5892a12d293b2859 (patch) | |
tree | 0fa20d812a02886aa9176d02a411bff71ebe5e55 /ACEXML | |
parent | 10c5542edc23c23b73c492c385609784cc2eb8cc (diff) | |
download | ATCD-62726256ead1f45160a8266f5892a12d293b2859.tar.gz |
ChangeLogTag: Fri Mar 7 07:19:46 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'ACEXML')
-rw-r--r-- | ACEXML/apps/svcconf/svcconf.mpc | 3 | ||||
-rw-r--r-- | ACEXML/common/common.mpc | 3 | ||||
-rw-r--r-- | ACEXML/examples/SAXPrint/SAXPrint.mpc | 2 | ||||
-rw-r--r-- | ACEXML/parser/parser/parser.mpc | 4 | ||||
-rw-r--r-- | ACEXML/tests/tests.mpc | 23 |
5 files changed, 35 insertions, 0 deletions
diff --git a/ACEXML/apps/svcconf/svcconf.mpc b/ACEXML/apps/svcconf/svcconf.mpc new file mode 100644 index 00000000000..1bcc8b040c1 --- /dev/null +++ b/ACEXML/apps/svcconf/svcconf.mpc @@ -0,0 +1,3 @@ +project(ACEXML_XML_Svc_Conf_Parser): acelib, acexml { + sharedname = ACEXML_XML_Svc_Conf_Parser +} diff --git a/ACEXML/common/common.mpc b/ACEXML/common/common.mpc new file mode 100644 index 00000000000..a34deefd62b --- /dev/null +++ b/ACEXML/common/common.mpc @@ -0,0 +1,3 @@ +project(ACEXML): acelib { + sharedname = ACEXML +} diff --git a/ACEXML/examples/SAXPrint/SAXPrint.mpc b/ACEXML/examples/SAXPrint/SAXPrint.mpc new file mode 100644 index 00000000000..fb64bc80fcd --- /dev/null +++ b/ACEXML/examples/SAXPrint/SAXPrint.mpc @@ -0,0 +1,2 @@ +project(SAXPrint): aceexe, acexml { +} diff --git a/ACEXML/parser/parser/parser.mpc b/ACEXML/parser/parser/parser.mpc new file mode 100644 index 00000000000..76454a1c9c2 --- /dev/null +++ b/ACEXML/parser/parser/parser.mpc @@ -0,0 +1,4 @@ +project(ACEXML_Parser): acelib { + sharedname = ACEXML_Parser + depends += ACEXML +} diff --git a/ACEXML/tests/tests.mpc b/ACEXML/tests/tests.mpc new file mode 100644 index 00000000000..f178c15ac88 --- /dev/null +++ b/ACEXML/tests/tests.mpc @@ -0,0 +1,23 @@ +project(Transcoder_Test): aceexe, acexml { + Source_Files { + Transcoder_Test.cpp + } +} + +project(NamespaceSupport_Test): aceexe, acexml { + Source_Files { + NamespaceSupport_Test.cpp + } +} + +project(HttpCharStream_Test): aceexe, acexml { + Source_Files { + HttpCharStream_Test.cpp + } +} + +project(ContentHandler_Test): aceexe, acexml { + Source_Files { + ContentHandler_Test.cpp + } +} |