aboutsummaryrefslogtreecommitdiff
path: root/test/postinstall/testcpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/postinstall/testcpp')
-rw-r--r--test/postinstall/testcpp/Makefile15
-rw-r--r--test/postinstall/testcpp/testcpp.cpp10
2 files changed, 0 insertions, 25 deletions
diff --git a/test/postinstall/testcpp/Makefile b/test/postinstall/testcpp/Makefile
deleted file mode 100644
index d6c47e65..00000000
--- a/test/postinstall/testcpp/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-PROGRAM = testcpp
-OBJECTS = $(addsuffix .o,$(PROGRAM))
-
-override CXXFLAGS += -std=c++11 -fvisibility=hidden -g -Wall -Werror $(shell pkg-config proj --cflags)
-override LDFLAGS += $(shell pkg-config proj --libs)
-
-all: $(PROGRAM)
-
-$(PROGRAM): $(OBJECTS)
- $(CXX) -o $@ $< $(LDFLAGS)
-
-clean:
- $(RM) $(PROGRAM) $(OBJECTS)
-
-.PHONY: clean
diff --git a/test/postinstall/testcpp/testcpp.cpp b/test/postinstall/testcpp/testcpp.cpp
deleted file mode 100644
index a03ca0ee..00000000
--- a/test/postinstall/testcpp/testcpp.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <proj/io.hpp>
-#include <proj/crs.hpp>
-#include <proj/coordinateoperation.hpp>
-#include <proj/coordinatesystem.hpp>
-#include <proj/datum.hpp>
-
-int main(int /*argc */, char** /* argv */)
-{
- return 0;
-}