diff options
author | Sven Gothel <[email protected]> | 2020-01-01 23:37:26 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-01-01 23:37:26 +0100 |
commit | 4de730cae5245d593275bcac02c3e67708d78c01 (patch) | |
tree | 82780c6996a4aad557d76f9d532ba7cf9ab8928e | |
parent | 09f274ac5330f3b5b1e7c2e848765488033f1050 (diff) |
add optional make/lib/gluegen/cpptasks* for iOS aarch64 and amd64
-rw-r--r-- | make/lib/gluegen-cpptasks-ios-aarch64.xml | 15 | ||||
-rw-r--r-- | make/lib/gluegen-cpptasks-ios-amd64.xml | 14 |
2 files changed, 29 insertions, 0 deletions
diff --git a/make/lib/gluegen-cpptasks-ios-aarch64.xml b/make/lib/gluegen-cpptasks-ios-aarch64.xml new file mode 100644 index 0000000..389f791 --- /dev/null +++ b/make/lib/gluegen-cpptasks-ios-aarch64.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<project name="GlueGen-cpptasks-ios-aarch64" basedir="." > + +<!-- Only set 'isIOSArm64' then continue via default task 'gluegen.cpptasks.detect.os.1' etc --> +<target name="gluegen.cpptasks.detect.os.custom"> + <property name="isIOSArm64" value="true" /> + <echo message="gluegen.cpptasks.detect.os.custom: GLUEGEN_CPPTASKS_FILE 'gluegen-cpptasks-ios-aarch64' done"/> +</target> + +<import file="${gluegen.root.abs-path}/make/gluegen-cpptasks-base.xml" optional="false" /> + +</project> + + diff --git a/make/lib/gluegen-cpptasks-ios-amd64.xml b/make/lib/gluegen-cpptasks-ios-amd64.xml new file mode 100644 index 0000000..729977d --- /dev/null +++ b/make/lib/gluegen-cpptasks-ios-amd64.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<project name="GlueGen-cpptasks-ios-amd64" basedir="." > + +<!-- Only set 'isIOSAmd64' then continue via default task 'gluegen.cpptasks.detect.os.1' etc --> +<target name="gluegen.cpptasks.detect.os.custom"> + <property name="isIOSAmd64" value="true" /> + <echo message="gluegen.cpptasks.detect.os.custom: GLUEGEN_CPPTASKS_FILE 'gluegen-cpptasks-ios-amd64' done"/> +</target> + +<import file="${gluegen.root.abs-path}/make/gluegen-cpptasks-base.xml" optional="false" /> + +</project> + |