summaryrefslogtreecommitdiff
path: root/ACE/examples/Export/Export.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Export/Export.mpc')
-rw-r--r--ACE/examples/Export/Export.mpc19
1 files changed, 19 insertions, 0 deletions
diff --git a/ACE/examples/Export/Export.mpc b/ACE/examples/Export/Export.mpc
new file mode 100644
index 00000000000..51edc145591
--- /dev/null
+++ b/ACE/examples/Export/Export.mpc
@@ -0,0 +1,19 @@
+// -*- MPC -*-
+// $Id$
+
+project(*Lib) : acelib {
+ sharedname = Export_Lib
+ dynamicflags += TEST_BUILD_DLL
+ Source_Files {
+ dll.cpp
+ }
+}
+
+project(*test) : aceexe {
+ exename = test
+ after += *Lib
+ libs += Export_Lib
+ Source_Files {
+ test.cpp
+ }
+}