summaryrefslogtreecommitdiff
path: root/wrappers/swift/Makefile
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-09-20 15:07:40 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-09-20 15:07:40 +0200
commit2a619ceba75a4c16b25de12d59a87eac795a4468 (patch)
tree1d63a35217011fa761b703633b3f91fd839ec71e /wrappers/swift/Makefile
parent7e309b67de74fe5bd5a1c70c1880c2a381c4f78b (diff)
Remove: unused wrappers
Diffstat (limited to 'wrappers/swift/Makefile')
-rw-r--r--wrappers/swift/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/wrappers/swift/Makefile b/wrappers/swift/Makefile
deleted file mode 100644
index 659b51f..0000000
--- a/wrappers/swift/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-.PHONY: build test install-header clean
-
-EXPORTS_PATH ?= ../../exports
-include $(EXPORTS_PATH)/common.mk
-
-ifeq ($(OS),Windows_NT)
-SWIFT = ./swift.cmd
-else
-SWIFT = swift
-endif
-
-build: install-header
- $(SWIFT) build --configuration release -Xlinker -L"$(EXPORTS_LIB_SUBFOLDER_PATH)"
-
-test: install-header
- $(SWIFT) test --parallel -Xlinker -L"$(EXPORTS_LIB_SUBFOLDER_PATH)"
-
-install-header: .try-build-lib
- mkdir -p CEduVpnCommon/Sources/CEduVpnCommon/Headers
- cp "$(EXPORTS_LIB_SUBFOLDER_PATH)/$(LIB_NAME).h" CEduVpnCommon/Sources/CEduVpnCommon/Headers/ # Copy header for modulemap
-
-clean:
- rm -rf .build/ CEduVpnCommon/Sources/CEduVpnCommon/Headers/*.h