-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3eea75b
commit f9b7f1c
Showing
27 changed files
with
778 additions
and
929 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
_OSXUnicodeDbg/oWidget.u_xcomp/Contents/Resources/Bitmap.strings
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-498 Bytes
_OSXUnicodeDbg/oWidget.u_xcomp/Contents/Resources/English.lproj/InfoPlist.strings
Binary file not shown.
Binary file removed
BIN
-7.88 KB
_OSXUnicodeDbg/oWidget.u_xcomp/Contents/Resources/English.lproj/Localizable.strings
Binary file not shown.
Binary file removed
BIN
-1.3 KB
_OSXUnicodeDbg/oWidget.u_xcomp/Contents/Resources/English.lproj/oWidget.bmp
Binary file not shown.
Binary file not shown.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// | ||
// omnis.xcconfig | ||
// build_all | ||
// | ||
// Copyright © 2023 Omnis Software Ltd. All rights reserved. | ||
// | ||
|
||
// Configuration settings file format documentation can be found at: | ||
// https://help.apple.com/xcode/#/dev745c5c974 | ||
|
||
XCOMP_BUNDLE_IDENTIFIER = omnis.xcomp.widget | ||
XCOMP_PRODUCT_NAME = oWidget | ||
|
||
OMNIS_SDK_ROOT = macosx | ||
OMNIS_DEPLOYMENT_TARGET = 10.14 | ||
OMNIS_BUILD_ROOT = $(SRCROOT)/build | ||
CPP_LANG_DIALECT = c++17 | ||
CPP_STD_LIBRARY = libc++ | ||
|
||
MACOSX_DEPLOYMENT_TARGET = $OMNIS_DEPLOYMENT_TARGET | ||
OMNIS_ACTIVE_ARCH_ONLY[config=Deployment] = NO | ||
OMNIS_ACTIVE_ARCH_ONLY[config=Development] = YES | ||
ONLY_ACTIVE_ARCH = $OMNIS_ACTIVE_ARCH_ONLY | ||
ARCHS = $(ARCHS_STANDARD) | ||
DEPLOYMENT_LOCATION = YES | ||
SKIP_INSTALL = NO | ||
INSTALL_ROOT = / | ||
INSTALL_PATH = / | ||
ALWAYS_SEARCH_USER_PATHS = NO | ||
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO | ||
CODE_SIGN_STYLE = Manual | ||
|
||
OMNIS_CODE_SIGNING_IDENTITY[config=Deployment] = - | ||
OMNIS_CODE_SIGNING_IDENTITY[config=Development] = - | ||
|
||
OMNIS_CONFIG[config=Deployment] = Release | ||
OMNIS_CONFIG[config=Development] = Debug | ||
|
||
OMNIS_FILES_ROOT = $OMNIS_BUILD_ROOT/$OMNIS_CONFIG | ||
|
||
COMPLIB_DIR[config=Deployment] = $(SRCROOT)/thirdparty/omnis.sdk/mac/complib | ||
COMPLIB_DIR[config=Development] = $(SRCROOT)/thirdparty/omnis.sdk/mac/complib_debug | ||
|
||
OMNISRC_DIR = $(SRCROOT)/thirdparty/omnis.sdk/mac/tools | ||
|
||
DWARF_DSYM_FOLDER_PATH_PREFIX = $(OMNIS_BUILD_ROOT)/DebugSymbols | ||
|
||
// jscomp | ||
OMNIS_JSCOMP_DIR = jscomp | ||
OMNIS_JSCOMP_INSTALL_DIR = $OMNIS_FILES_ROOT/$OMNIS_JSCOMP_DIR | ||
OMNIS_JSCOMP_PREFIX_PATH = $COMPLIB_DIR/complib.framework/Versions/A/Headers/carbnuni.h | ||
|
||
// xcomp | ||
OMNIS_XCOMP_DIR = xcomp | ||
OMNIS_XCOMP_INSTALL_DIR = $OMNIS_FILES_ROOT/$OMNIS_XCOMP_DIR | ||
OMNIS_XCOMP_HEADER_PATHS = $COMPLIB_DIR/complib.framework/Headers | ||
OMNIS_XCOMP_REZ_PATHS = $COMPLIB_DIR/complib.framework/Versions/A/Resources | ||
OMNIS_XCOMP_PREFIX_PATH = $COMPLIB_DIR/complib.framework/Versions/A/Headers/carbnuni.h | ||
OMNIS_XCOMP_FRAMEWORK_PATH = $COMPLIB_DIR/ | ||
|
||
OMNIS_C_FLAGS = "-DOMNISSDK=110" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#define TESTVER 0 | ||
#define _DEBUG | ||
|
||
#define mach_o_unicode | ||
#define isunicode | ||
#define UNICODE | ||
#define _UNICODE | ||
|
||
#include "carbnuni.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#define TESTVER 0 | ||
|
||
#define mach_o_unicode | ||
#define isunicode | ||
#define UNICODE | ||
#define _UNICODE | ||
|
||
#include "carbnuni.h" |
Oops, something went wrong.