Merge branch 'master' into generate_api
commit
484897a18c
@ -0,0 +1,22 @@
|
||||
.ensure_docker: &ensure_docker
|
||||
# Check for docker and install if missing
|
||||
- 'which docker || ( sudo apt-get update -y && sudo apt-get install docker.io -y )'
|
||||
|
||||
.ensure_rsync: &ensure_rsync
|
||||
# Install rsync and deps if missing
|
||||
- 'which ssh-agent || ( sudo apt-get update -y && sudo apt-get install openssh-client -y )'
|
||||
- 'which rsync || ( sudo apt-get update -y && sudo apt-get install rsync -y )'
|
||||
- 'which make || ( sudo apt-get update -y && sudo apt-get install make -y )'
|
||||
|
||||
.standard_job:
|
||||
tags: [kvm]
|
||||
before_script:
|
||||
- *ensure_docker
|
||||
- *ensure_rsync
|
||||
|
||||
.make_in_docker:
|
||||
extends: .standard_job
|
||||
script:
|
||||
- docker login -u ${DOCKER_REGISTRY_USER} -p ${DOCKER_REGISTRY_PASS} ${DOCKER_REGISTRY_HOST}
|
||||
- cd scripts/${CI_DISTRO_TARGET}
|
||||
- make
|
@ -0,0 +1,46 @@
|
||||
include:
|
||||
- '.gitlab-ci-files/common-prepare.yml'
|
||||
|
||||
stages:
|
||||
- build
|
||||
|
||||
|
||||
# Debian
|
||||
|
||||
debian10:build:
|
||||
extends: .make_in_docker
|
||||
stage: build
|
||||
variables:
|
||||
CI_DISTRO_TARGET: "debian10"
|
||||
DEBIAN_FRONTEND: "noninteractive"
|
||||
rules:
|
||||
- if: '$CI_COMMIT_TAG !~ /^Release_[0-9]+\.[0-9]+\.[0-9]+$/'
|
||||
|
||||
debian10:tagged-build:
|
||||
extends: .make_in_docker
|
||||
stage: build
|
||||
variables:
|
||||
CI_DISTRO_TARGET: "debian10"
|
||||
DEBIAN_FRONTEND: "noninteractive"
|
||||
TAGGED_BUILD: "true"
|
||||
rules:
|
||||
- if: '$CI_COMMIT_TAG =~ /^Release_[0-9]+\.[0-9]+\.[0-9]+$/'
|
||||
|
||||
# CentOS
|
||||
|
||||
centos8:build:
|
||||
extends: .make_in_docker
|
||||
stage: build
|
||||
variables:
|
||||
CI_DISTRO_TARGET: "centos8"
|
||||
rules:
|
||||
- if: '$CI_COMMIT_TAG !~ /^Release_[0-9]+\.[0-9]+\.[0-9]+$/'
|
||||
|
||||
centos8:tagged-build:
|
||||
extends: .make_in_docker
|
||||
stage: build
|
||||
variables:
|
||||
CI_DISTRO_TARGET: "centos8"
|
||||
TAGGED_BUILD: "true"
|
||||
rules:
|
||||
- if: '$CI_COMMIT_TAG =~ /^Release_[0-9]+\.[0-9]+\.[0-9]+$/'
|
@ -0,0 +1,4 @@
|
||||
# 1st Party Dependencies
|
||||
## Prefer git tags instead of SHA hashes when possible.
|
||||
sequoia=openpgp/v1.1.0
|
||||
yml2=2.7.0
|
@ -0,0 +1,13 @@
|
||||
# Copyright 2020, pEp Foundation
|
||||
# This file is part of pEpEngine - Android Build
|
||||
# This file may be used under the terms of the GNU General Public License version 3
|
||||
# see LICENSE.txt
|
||||
|
||||
include ../Makefile.conf
|
||||
|
||||
all:
|
||||
echo "Placeholder command, this is meant to be cleaned by JNIAdapter Android build"
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -rf include/
|
@ -0,0 +1,485 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 50;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
1500C9AE264BE75F001FD417 /* sqlite3.c in Sources */ = {isa = PBXBuildFile; fileRef = 151672CE262F38D900E99CE5 /* sqlite3.c */; };
|
||||
151672D0262F38D900E99CE5 /* sqlite3.c in Sources */ = {isa = PBXBuildFile; fileRef = 151672CE262F38D900E99CE5 /* sqlite3.c */; };
|
||||
151672D1262F38D900E99CE5 /* sqlite3.h in Headers */ = {isa = PBXBuildFile; fileRef = 151672CF262F38D900E99CE5 /* sqlite3.h */; };
|
||||
151672D4262F38E500E99CE5 /* sqlite3.h in Headers */ = {isa = PBXBuildFile; fileRef = 151672CF262F38D900E99CE5 /* sqlite3.h */; };
|
||||
15A326372612055F009D07EB /* PEPSQLITE3_iOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A326362612055F009D07EB /* PEPSQLITE3_iOS.m */; };
|
||||
15A326382612055F009D07EB /* PEPSQLITE3_iOS.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 15A326352612055F009D07EB /* PEPSQLITE3_iOS.h */; };
|
||||
15A32656261205E7009D07EB /* PEPSQLITE3_macOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32655261205E7009D07EB /* PEPSQLITE3_macOS.h */; };
|
||||
15A32658261205E7009D07EB /* PEPSQLITE3_macOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A32657261205E7009D07EB /* PEPSQLITE3_macOS.m */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
15A326312612055F009D07EB /* CopyFiles */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = "include/$(PRODUCT_NAME)";
|
||||
dstSubfolderSpec = 16;
|
||||
files = (
|
||||
15A326382612055F009D07EB /* PEPSQLITE3_iOS.h in CopyFiles */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
151672CE262F38D900E99CE5 /* sqlite3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sqlite3.c; path = ../../../../sqlite/sqlite3.c; sourceTree = "<group>"; };
|
||||
151672CF262F38D900E99CE5 /* sqlite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sqlite3.h; path = ../../../../sqlite/sqlite3.h; sourceTree = "<group>"; };
|
||||
15A3260B2611F646009D07EB /* PEPSQLITE3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PEPSQLITE3.h; sourceTree = "<group>"; };
|
||||
15A3260C2611F646009D07EB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
15A326332612055F009D07EB /* libPEPSQLITE3_iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPEPSQLITE3_iOS.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
15A326352612055F009D07EB /* PEPSQLITE3_iOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PEPSQLITE3_iOS.h; sourceTree = "<group>"; };
|
||||
15A326362612055F009D07EB /* PEPSQLITE3_iOS.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PEPSQLITE3_iOS.m; sourceTree = "<group>"; };
|
||||
15A32653261205E7009D07EB /* libPEPSQLITE3_macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPEPSQLITE3_macOS.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
15A32655261205E7009D07EB /* PEPSQLITE3_macOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PEPSQLITE3_macOS.h; sourceTree = "<group>"; };
|
||||
15A32657261205E7009D07EB /* PEPSQLITE3_macOS.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PEPSQLITE3_macOS.m; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
15A326302612055F009D07EB /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
15A32651261205E7009D07EB /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
151672CD262F388F00E99CE5 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
151672CE262F38D900E99CE5 /* sqlite3.c */,
|
||||
151672CF262F38D900E99CE5 /* sqlite3.h */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
15A325FE2611F646009D07EB = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
151672CD262F388F00E99CE5 /* src */,
|
||||
15A3260A2611F646009D07EB /* PEPSQLITE3 */,
|
||||
15A326342612055F009D07EB /* PEPSQLITE3_iOS */,
|
||||
15A32654261205E7009D07EB /* PEPSQLITE3_macOS */,
|
||||
15A326092611F646009D07EB /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
15A326092611F646009D07EB /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
15A326332612055F009D07EB /* libPEPSQLITE3_iOS.a */,
|
||||
15A32653261205E7009D07EB /* libPEPSQLITE3_macOS.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
15A3260A2611F646009D07EB /* PEPSQLITE3 */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
15A3260B2611F646009D07EB /* PEPSQLITE3.h */,
|
||||
15A3260C2611F646009D07EB /* Info.plist */,
|
||||
);
|
||||
path = PEPSQLITE3;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
15A326342612055F009D07EB /* PEPSQLITE3_iOS */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
15A326352612055F009D07EB /* PEPSQLITE3_iOS.h */,
|
||||
15A326362612055F009D07EB /* PEPSQLITE3_iOS.m */,
|
||||
);
|
||||
path = PEPSQLITE3_iOS;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
15A32654261205E7009D07EB /* PEPSQLITE3_macOS */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
15A32655261205E7009D07EB /* PEPSQLITE3_macOS.h */,
|
||||
15A32657261205E7009D07EB /* PEPSQLITE3_macOS.m */,
|
||||
);
|
||||
path = PEPSQLITE3_macOS;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
15A3264F261205E7009D07EB /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
151672D4262F38E500E99CE5 /* sqlite3.h in Headers */,
|
||||
15A32656261205E7009D07EB /* PEPSQLITE3_macOS.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
15A326812612066D009D07EB /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
151672D1262F38D900E99CE5 /* sqlite3.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
15A326322612055F009D07EB /* PEPSQLITE3_iOS */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 15A326392612055F009D07EB /* Build configuration list for PBXNativeTarget "PEPSQLITE3_iOS" */;
|
||||
buildPhases = (
|
||||
15A326812612066D009D07EB /* Headers */,
|
||||
15A3262F2612055F009D07EB /* Sources */,
|
||||
15A326302612055F009D07EB /* Frameworks */,
|
||||
15A326312612055F009D07EB /* CopyFiles */,
|
||||
15A3268926120716009D07EB /* Copy Artefacts & Headers to Custom Build Dir */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = PEPSQLITE3_iOS;
|
||||
productName = PEPSQLITE3_iOS;
|
||||
productReference = 15A326332612055F009D07EB /* libPEPSQLITE3_iOS.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
15A32652261205E7009D07EB /* PEPSQLITE3_macOS */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 15A32659261205E7009D07EB /* Build configuration list for PBXNativeTarget "PEPSQLITE3_macOS" */;
|
||||
buildPhases = (
|
||||
15A3264F261205E7009D07EB /* Headers */,
|
||||
15A32650261205E7009D07EB /* Sources */,
|
||||
15A32651261205E7009D07EB /* Frameworks */,
|
||||
15A3268A26120757009D07EB /* Copy Artefacts & Headers to Custom Build Dir */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = PEPSQLITE3_macOS;
|
||||
productName = PEPSQLITE3_macOS;
|
||||
productReference = 15A32653261205E7009D07EB /* libPEPSQLITE3_macOS.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
15A325FF2611F646009D07EB /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 1240;
|
||||
TargetAttributes = {
|
||||
15A326322612055F009D07EB = {
|
||||
CreatedOnToolsVersion = 12.4;
|
||||
};
|
||||
15A32652261205E7009D07EB = {
|
||||
CreatedOnToolsVersion = 12.4;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 15A326022611F646009D07EB /* Build configuration list for PBXProject "PEPSQLITE3" */;
|
||||
compatibilityVersion = "Xcode 9.3";
|
||||
developmentRegion = en;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
Base,
|
||||
);
|
||||
mainGroup = 15A325FE2611F646009D07EB;
|
||||
productRefGroup = 15A326092611F646009D07EB /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
15A326322612055F009D07EB /* PEPSQLITE3_iOS */,
|
||||
15A32652261205E7009D07EB /* PEPSQLITE3_macOS */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
15A3268926120716009D07EB /* Copy Artefacts & Headers to Custom Build Dir */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputFileListPaths = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = "Copy Artefacts & Headers to Custom Build Dir";
|
||||
outputFileListPaths = (
|
||||
);
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "CUSTOM_BUILD_DIR=\"${PROJECT_DIR}/build\"\nCUSTOM_INCLUDE_DIR=\"${CUSTOM_BUILD_DIR}/include\"\nmkdir -p ${CUSTOM_INCLUDE_DIR}\ncp -R \"${PROJECT_DIR}\"/../../../../sqlite/*.h ${CUSTOM_INCLUDE_DIR}\ncp \"${TARGET_BUILD_DIR}/libPEPSQLITE3_iOS.a\" ${CUSTOM_BUILD_DIR}\n\n";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
15A3268A26120757009D07EB /* Copy Artefacts & Headers to Custom Build Dir */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputFileListPaths = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = "Copy Artefacts & Headers to Custom Build Dir";
|
||||
outputFileListPaths = (
|
||||
);
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "CUSTOM_BUILD_DIR=\"${PROJECT_DIR}/build\"\nCUSTOM_INCLUDE_DIR=\"${CUSTOM_BUILD_DIR}/include\"\nmkdir -p ${CUSTOM_INCLUDE_DIR}\ncp -R \"${TARGET_BUILD_DIR}\"/usr/local/include/sqlite3.h ${CUSTOM_INCLUDE_DIR}\ncp \"${TARGET_BUILD_DIR}/libPEPSQLITE3_macOS.a\" ${CUSTOM_BUILD_DIR}\n";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
15A3262F2612055F009D07EB /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
15A326372612055F009D07EB /* PEPSQLITE3_iOS.m in Sources */,
|
||||
151672D0262F38D900E99CE5 /* sqlite3.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
15A32650261205E7009D07EB /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
15A32658261205E7009D07EB /* PEPSQLITE3_macOS.m in Sources */,
|
||||
1500C9AE264BE75F001FD417 /* sqlite3.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
15A3260E2611F646009D07EB /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu11;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 11.4;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||
MTL_FAST_MATH = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTS_MACCATALYST = NO;
|
||||
TARGETED_DEVICE_FAMILY = "";
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
VERSION_INFO_PREFIX = "";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
15A3260F2611F646009D07EB /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu11;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 11.4;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
MTL_FAST_MATH = YES;
|
||||
SDKROOT = iphoneos;
|
||||
SUPPORTS_MACCATALYST = NO;
|
||||
TARGETED_DEVICE_FAMILY = "";
|
||||
VALIDATE_PRODUCT = YES;
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
VERSION_INFO_PREFIX = "";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
15A3263A2612055F009D07EB /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
DEVELOPMENT_TEAM = NQLYU6MGPN;
|
||||
OTHER_LDFLAGS = "-ObjC";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SKIP_INSTALL = YES;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
15A3263B2612055F009D07EB /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
DEVELOPMENT_TEAM = NQLYU6MGPN;
|
||||
OTHER_LDFLAGS = "-ObjC";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SKIP_INSTALL = YES;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
15A3265A261205E7009D07EB /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
DEVELOPMENT_TEAM = NQLYU6MGPN;
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = macosx;
|
||||
SKIP_INSTALL = YES;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
15A3265B261205E7009D07EB /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
DEVELOPMENT_TEAM = NQLYU6MGPN;
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = macosx;
|
||||
SKIP_INSTALL = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
15A326022611F646009D07EB /* Build configuration list for PBXProject "PEPSQLITE3" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
15A3260E2611F646009D07EB /* Debug */,
|
||||
15A3260F2611F646009D07EB /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
15A326392612055F009D07EB /* Build configuration list for PBXNativeTarget "PEPSQLITE3_iOS" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
15A3263A2612055F009D07EB /* Debug */,
|
||||
15A3263B2612055F009D07EB /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
15A32659261205E7009D07EB /* Build configuration list for PBXNativeTarget "PEPSQLITE3_macOS" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
15A3265A261205E7009D07EB /* Debug */,
|
||||
15A3265B261205E7009D07EB /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 15A325FF2611F646009D07EB /* Project object */;
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:">
|
||||
</FileRef>
|
||||
</Workspace>
|
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>$(PRODUCT_NAME)</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
</dict>
|
||||
</plist>
|
@ -0,0 +1,18 @@
|
||||
//
|
||||
// PEPSQLITE3.h
|
||||
// PEPSQLITE3
|
||||
//
|
||||
// Created by Andreas Buff on 29.03.21.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
//! Project version number for PEPSQLITE3.
|
||||
FOUNDATION_EXPORT double PEPSQLITE3VersionNumber;
|
||||
|
||||
//! Project version string for PEPSQLITE3.
|
||||
FOUNDATION_EXPORT const unsigned char PEPSQLITE3VersionString[];
|
||||
|
||||
// In this header, you should import all the public headers of your framework using statements like #import <PEPSQLITE3/PublicHeader.h>
|
||||
|
||||
|
@ -0,0 +1,12 @@
|
||||
//
|
||||
// PEPSQLITE3_iOS.h
|
||||
// PEPSQLITE3_iOS
|
||||
//
|
||||
// Created by Andreas Buff on 29.03.21.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface PEPSQLITE3_iOS : NSObject
|
||||
|
||||
@end
|
@ -0,0 +1,12 @@
|
||||
//
|
||||
// PEPSQLITE3_iOS.m
|
||||
// PEPSQLITE3_iOS
|
||||
//
|
||||
// Created by Andreas Buff on 29.03.21.
|
||||
//
|
||||
|
||||
#import "PEPSQLITE3_iOS.h"
|
||||
|
||||
@implementation PEPSQLITE3_iOS
|
||||
|
||||
@end
|
@ -0,0 +1,12 @@
|
||||
//
|
||||
// PEPSQLITE3_macOS.h
|
||||
// PEPSQLITE3_macOS
|
||||
//
|
||||
// Created by Andreas Buff on 29.03.21.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface PEPSQLITE3_macOS : NSObject
|
||||
|
||||
@end
|
@ -0,0 +1,12 @@
|
||||
//
|
||||
// PEPSQLITE3_macOS.m
|
||||
// PEPSQLITE3_macOS
|
||||
//
|
||||
// Created by Andreas Buff on 29.03.21.
|
||||
//
|
||||
|
||||
#import "PEPSQLITE3_macOS.h"
|
||||
|
||||
@implementation PEPSQLITE3_macOS
|
||||
|
||||
@end
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:">
|
||||
</FileRef>
|
||||
</Workspace>
|
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>$(PRODUCT_NAME)</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
</dict>
|
||||
</plist>
|
@ -0,0 +1,18 @@
|
||||
//
|
||||
// pEpASN1.h
|
||||
// pEpASN1
|
||||
//
|
||||
// Created by Andreas Buff on 26.03.21.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
//! Project version number for pEpASN1.
|
||||
FOUNDATION_EXPORT double pEpASN1VersionNumber;
|
||||
|
||||
//! Project version string for pEpASN1.
|
||||
FOUNDATION_EXPORT const unsigned char pEpASN1VersionString[];
|
||||
|
||||
// In this header, you should import all the public headers of your framework using statements like #import <pEpASN1/PublicHeader.h>
|
||||
|
||||
|
@ -0,0 +1,12 @@
|
||||
//
|
||||
// pEpASN1_iOS.h
|
||||
// pEpASN1_iOS
|
||||
//
|
||||
// Created by Andreas Buff on 26.03.21.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface pEpASN1_iOS : NSObject
|
||||
|
||||
@end
|
@ -0,0 +1,12 @@
|
||||
//
|
||||
// pEpASN1_iOS.m
|
||||
// pEpASN1_iOS
|
||||
//
|
||||
// Created by Andreas Buff on 26.03.21.
|
||||
//
|
||||
|
||||
#import "pEpASN1_iOS.h"
|
||||
|
||||
@implementation pEpASN1_iOS
|
||||
|
||||
@end
|
@ -0,0 +1,12 @@
|
||||
//
|
||||
// pEpASN1_macOS.h
|
||||
// pEpASN1_macOS
|
||||
//
|
||||
// Created by Andreas Buff on 26.03.21.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface pEpASN1_macOS : NSObject
|
||||
|
||||
@end
|
@ -0,0 +1,12 @@
|
||||
//
|
||||
// pEpASN1_macOS.m
|
||||
// pEpASN1_macOS
|
||||
//
|
||||
// Created by Andreas Buff on 26.03.21.
|
||||
//
|
||||
|
||||
#import "pEpASN1_macOS.h"
|
||||
|
||||
@implementation pEpASN1_macOS
|
||||
|
||||
@end
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1220"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "NO"
|
||||
buildImplicitDependencies = "NO">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1552DB102577D4F100A92F71"
|
||||
BuildableName = "libpEpEngine_macOS.a"
|
||||
BlueprintName = "pEpEngine_macOS"
|
||||
ReferencedContainer = "container:pEpEngine.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||
<Testables>
|
||||
</Testables>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle = "0"
|
||||
useCustomWorkingDirectory = "NO"
|
||||
ignoresPersistentStateOnLaunch = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
debugServiceExtension = "internal"
|
||||
allowLocationSimulation = "YES">
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
buildConfiguration = "Release"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
debugDocumentVersioning = "YES">
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1552DB102577D4F100A92F71"
|
||||
BuildableName = "libpEpEngine_macOS.a"
|
||||
BlueprintName = "pEpEngine_macOS"
|
||||
ReferencedContainer = "container:pEpEngine.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration = "Debug">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration = "Release"
|
||||
revealArchiveInOrganizer = "YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
@ -0,0 +1,13 @@
|
||||
//
|
||||
// pEpEngine_macOS.h
|
||||
// pEpEngine_macOS
|
||||
//
|
||||
// Created by Andreas Buff on 02.12.20.
|
||||
// Copyright © 2020 p≡p Security S.A. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface pEpEngine_macOS : NSObject
|
||||
|
||||
@end
|
@ -0,0 +1,13 @@
|
||||
//
|
||||
// pEpEngine_macOS.m
|
||||
// pEpEngine_macOS
|
||||
//
|
||||
// Created by Andreas Buff on 02.12.20.
|
||||
// Copyright © 2020 p≡p Security S.A. All rights reserved.
|
||||
//
|
||||
|
||||
#import "pEpEngine_macOS.h"
|
||||
|
||||
@implementation pEpEngine_macOS
|
||||
|
||||
@end
|
@ -1,78 +1,84 @@
|
||||
@ECHO OFF
|
||||
PUSHD .
|
||||
SET pwd=%cd%
|
||||
CD %pwd%\sync
|
||||
|
||||
:: The script is located in ...\pEpForWindowsAdapterSolution\pEpEngine\build-windows\
|
||||
SET current_directory=%~dp0
|
||||
|
||||
:: Engine directory is ...\pEpForWindowsAdapterSolution\pEpEngine\
|
||||
SET engine_directory=%current_directory:~0,-14%
|
||||
|
||||
:: YML2 directory is ...\pEpForWindowsAdapterSolution\yml2\
|
||||
SET yml2_directory=%engine_directory:~0,-11%\yml2
|
||||
|
||||
:: Create the system.db
|
||||
PUSHD %engine_directory%\db
|
||||
CALL make_systemdb
|
||||
IF NOT EXIST "%ProgramData%\pEp" "MKDIR %ProgramData%\pEp"
|
||||
DEL "%ProgramData%\pEp\system.db"
|
||||
MOVE system.db "%ProgramData%\pEp\system.db"
|
||||
|
||||
:: Generate code in ...\pEpEngine\sync
|
||||
CD ..\sync
|
||||
|
||||
:: Make sure YML2 is installed
|
||||
PY -m pip install --upgrade pip
|
||||
PY -m pip install wheel
|
||||
PY -m pip install yml2
|
||||
|
||||
:: Generate the Sync code
|
||||
IF NOT EXIST generated MKDIR generated
|
||||
|
||||
ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_actions.ysl2 sync.fsm
|
||||
py "%YML_PATH%\yml2proc" -E utf-8 -y gen_actions.ysl2 sync.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 (
|
||||
POPD
|
||||
EXIT /B 1
|
||||
)
|
||||
ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_codec.ysl2 distribution.fsm
|
||||
py "%YML_PATH%\yml2proc" -E utf-8 -y gen_codec.ysl2 distribution.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 (
|
||||
POPD
|
||||
EXIT /B 1
|
||||
)
|
||||
ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_codec.ysl2 sync.fsm
|
||||
py "%YML_PATH%\yml2proc" -E utf-8 -y gen_codec.ysl2 sync.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 (
|
||||
POPD
|
||||
EXIT /B 1
|
||||
)
|
||||
ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_messages.ysl2 sync.fsm
|
||||
py "%YML_PATH%\yml2proc" -E utf-8 -y gen_messages.ysl2 sync.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 (
|
||||
POPD
|
||||
EXIT /B 1
|
||||
)
|
||||
ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_messages.ysl2 distribution.fsm
|
||||
py "%YML_PATH%\yml2proc" -E utf-8 -y gen_messages.ysl2 distribution.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 (
|
||||
POPD
|
||||
EXIT /B 1
|
||||
)
|
||||
ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_message_func.ysl2 sync.fsm
|
||||
py "%YML_PATH%\yml2proc" -E utf-8 -y gen_message_func.ysl2 sync.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 (
|
||||
POPD
|
||||
EXIT /B 1
|
||||
)
|
||||
ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_statemachine.ysl2 sync.fsm
|
||||
py "%YML_PATH%\yml2proc" -E utf-8 -y gen_statemachine.ysl2 sync.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 (
|
||||
POPD
|
||||
EXIT /B 1
|
||||
)
|
||||
|
||||
xcopy /y generated\*.asn1 ..\asn.1\
|
||||
xcopy /y generated\*.c ..\src\
|
||||
xcopy /y generated\*.h ..\src\
|
||||
|
||||
CD %pwd%\asn.1
|
||||
ECHO PY -m yml2.yml2proc -E utf-8 -y gen_actions.ysl2 sync.fsm
|
||||
PY -m yml2.yml2proc -E utf-8 -y gen_actions.ysl2 sync.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 GOTO end
|
||||
|
||||
ECHO PY -m yml2.yml2proc -E utf-8 -y gen_codec.ysl2 distribution.fsm
|
||||
PY -m yml2.yml2proc -E utf-8 -y gen_codec.ysl2 distribution.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 GOTO end
|
||||
|
||||
ECHO PY -m yml2.yml2proc -E utf-8 -y gen_codec.ysl2 sync.fsm
|
||||
PY -m yml2.yml2proc -E utf-8 -y gen_codec.ysl2 sync.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 GOTO end
|
||||
|
||||
ECHO PY -m yml2.yml2proc -E utf-8 -y gen_messages.ysl2 sync.fsm
|
||||
PY -m yml2.yml2proc -E utf-8 -y gen_messages.ysl2 sync.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 GOTO end
|
||||
|
||||
ECHO PY -m yml2.yml2proc -E utf-8 -y gen_messages.ysl2 distribution.fsm
|
||||
PY -m yml2.yml2proc -E utf-8 -y gen_messages.ysl2 distribution.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 GOTO end
|
||||
|
||||
ECHO PY -m yml2.yml2proc -E utf-8 -y gen_message_func.ysl2 sync.fsm
|
||||
PY -m yml2.yml2proc -E utf-8 -y gen_message_func.ysl2 sync.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 GOTO end
|
||||
|
||||
ECHO PY -m yml2.yml2proc -E utf-8 -y gen_statemachine.ysl2 sync.fsm
|
||||
PY -m yml2.yml2proc -E utf-8 -y gen_statemachine.ysl2 sync.fsm
|
||||
IF %ERRORLEVEL% NEQ 0 GOTO end
|
||||
|
||||
XCOPY /y generated\*.asn1 ..\asn.1\
|
||||
XCOPY /y generated\*.c ..\src\
|
||||
XCOPY /y generated\*.h ..\src\
|
||||
|
||||
CD %engine_directory%\asn.1
|
||||
|
||||
DEL *.h
|
||||
DEL *.c
|
||||
|
||||
..\..\Tools\asn1c\bin\asn1c -S ../../Tools/asn1c/share/asn1c -gen-PER -fincludes-quoted -fcompound-names -pdu=auto pEp.asn1 keysync.asn1 sync.asn1
|
||||
IF %ERRORLEVEL% NEQ 0 (
|
||||
POPD
|
||||
EXIT /B 1
|
||||
)
|
||||
IF %ERRORLEVEL% NEQ 0 GOTO end
|
||||
|
||||
..\..\Tools\asn1c\bin\asn1c -S ../../Tools/asn1c/share/asn1c -gen-PER -fincludes-quoted -fcompound-names -pdu=auto pEp.asn1 keyreset.asn1 distribution.asn1
|
||||
IF %ERRORLEVEL% NEQ 0 (
|
||||
POPD
|
||||
EXIT /B 1
|
||||
)
|
||||
IF %ERRORLEVEL% NEQ 0 GOTO end< |