summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-08-24 17:38:05 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-08-24 17:38:05 +0200
commitfe3c7fdf52e4bfd6e736a54c20eb12bb5cfd1f30 (patch)
treea25dfc32c8cf6f76fdf4071c1af66e68f7ee0512 /tests
parent308d4970599cc5e5f637cbd354498dd88c8eb3c2 (diff)
initial setup for library
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile5
-rw-r--r--tests/simple/Makefile22
-rw-r--r--tests/simple/simple.cpp35
3 files changed, 62 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644
index 0000000..2f74b32
--- /dev/null
+++ b/tests/Makefile
@@ -0,0 +1,5 @@
+all:
+ cd simple; $(MAKE)
+
+clean:
+ cd simple; $(MAKE) clean
diff --git a/tests/simple/Makefile b/tests/simple/Makefile
new file mode 100644
index 0000000..e3bd7c7
--- /dev/null
+++ b/tests/simple/Makefile
@@ -0,0 +1,22 @@
+CPP = g++
+RM = rm -f
+CPP_FLAGS = -Wall -c -I. -O2
+
+LD = g++
+LD_FLAGS = -Wall -shared -O2
+RESULT = simple.so
+
+SOURCES = $(wildcard *.cpp)
+OBJECTS = $(SOURCES:%.cpp=%.o)
+
+all: ${OBJECTS} ${RESULT}
+
+${RESULT}: ${OBJECTS}
+ ${LD} ${LD_FLAGS} -o $@ ${OBJECTS} -lphpcpp
+
+clean:
+ ${RM} *.obj *~* ${OBJECTS} ${RESULT}
+
+${OBJECTS}:
+ ${CPP} ${CPP_FLAGS} -fpic -o $@ ${@:%.o=%.cpp}
+
diff --git a/tests/simple/simple.cpp b/tests/simple/simple.cpp
new file mode 100644
index 0000000..36db294
--- /dev/null
+++ b/tests/simple/simple.cpp
@@ -0,0 +1,35 @@
+/**
+ * Simple.h
+ *
+ * A very simple extension that does almost nothing
+ *
+ * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
+ * @copyright 2013 Copernica BV
+ */
+#include <phpcpp.h>
+
+/**
+ * Override the extension class
+ */
+class SimpleExtension : public PhpCpp::Extension
+{
+public:
+ /**
+ * Constructor
+ */
+ SimpleExtension() : Extension(
+ "simple",
+ "1.0",
+ "Emiel Bruijntjes <emiel.bruijntjes@copernica.com>",
+ "http://www.copernica.com",
+ "Copyright 2013 Copernica BV")
+ {
+ }
+};
+
+extern "C" {
+
+// create the object for the PHP extension
+PHP_CPP_EXTENSION(SimpleExtension);
+
+}