我在 Haxe 上编写了自己的协议、数据结构和逻辑的跨平台实现。如何在 iOS 和 OSX 的企业应用程序(带有本机 UI)中构建和使用它?
问问题
1716 次
1 回答
9
如何从 Haxe 创建 iOS- / OSX- 库并在本机应用程序中使用它
实际情况:12.2014;HXCPP-ver.:
3.1.39
~git
.依赖:
hxcpp
1. Haxe -> 图书馆
创建一个新的 Haxe 项目,主类名为HxModule
.
class HxModule
{
public static function main()
{
Sys.println('Hello from HxModule: "${test()}"');
}
@:headerCode
public static function test():Int
{
return 101;
}
}
构建.hxml
-main HxModule
-cp src
-lib hxcpp
# this is for Mac OS X:
-D HXCPP_M64
# this is required on Windows. the "d" stands for debug:
#-D ABI=-MTd
--each
# at this phase we create a binary for tests
-cpp out/cpp/module
--next
# at this phase we create a binary for tests
-cpp out/cpp/module
-D static_link
-D actuate
建造:$ haxe buid.hxml
2. Xcode-项目 <- 库
- 创建一个新的 Xcode 项目。它可以用于 OSX 或 iOS、应用程序或 Cocoa 框架。
- 在“项目”/“构建设置”/“标题搜索路径”中添加依赖项的路径:(所有路径必须是完整的/非相对的和递归的)
out/cpp/module/include
- 您必须将其修复为完整路径;{your-haxelib-repo}/hxcpp/{version}/include
- {这里是你的};/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
- 在“项目”/“构建设置”/“Apple LLVM 6.0 - 语言 - C++”中更改值:
- 'C++ 语言方言' =
GNU++11 [-std=gnu++11]
- 'C++ 标准库' =
libstdc++ (GNU C++ standard library)
- 'C++ 语言方言' =
- 在“项目”/“构建阶段”/“将二进制文件与库链接”中:
HxModule.a
- 重命名文件:
AppDelegate.m
->AppDelegate.mm
- 编辑
AppDelegate.mm
:
#import "AppDelegate.h"
#import "HxModule.h"
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
NSLog(@"test: %d", ((int)HxModule_obj::test()));
}
@end
此外,为了自动完成和更好的导航,您可以将目录中的参考组添加到 Xcode-project 中:
include
来自 Haxe 的输出;include
来自 haxelibhxcpp
。
在撰写本文时,只有一个可能的问题。可以通过编辑文件来解决{haxelib:hxcpp}/include/hxcpp.h
。只需在文件开头添加几行:
#ifndef HXCPP_H
#define HXCPP_H
// Standard headers ....
// Custom override by @suhinini
#define Class HxcppClass
// Basic mapping from haxe -> c++
typedef int Int;
typedef bool Bool;
// Windows hack
#define NOMINMAX
#ifdef _MSC_VER
#include <typeinfo.h>
namespace hx { typedef ::type_info type_info; }
...
见后// Standard headers ....
。
示例项目。
于 2014-12-07T14:31:21.437 回答