如何从Haxe创建iOS和OSX-库并在本机应用程序中使用它?



我有一个跨平台的协议,数据结构和逻辑的实现,写在Haxe上。如何在适用于 iOS 和 OSX 的企业应用程序(使用本机 UI(中构建和使用它?

如何从Haxe创建iOS-/OSX-库并在本机应用程序中使用它

实际: 12.2014;HXCPP版本:3.1.39~git .

依赖关系:hxcpp

1. 哈克斯->图书馆

创建一个新的Haxe项目,主类名为HxModule

src/HxModule.hx
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-project <-Library

  1. 创建一个新的 Xcode 项目。它可以用于OSX或iOS,应用程序或Cocoa Framework。
  2. 在"项目"/">
  3. 构建设置"/"标题搜索路径"中添加依赖项路径:(所有路径必须是完整/非相对递归的(
    1. out/cpp/module/include - 您必须将其修复为完整路径;
    2. {your-haxelib-repo}/hxcpp/{version}/include - {这里-你的};
    3. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
  4. 在"项目"/">
  5. 构建设置"/"Apple LLVM 6.0 - 语言 - C++"中,更改值:
    • "C++语言方言" = GNU++11 [-std=gnu++11]
    • "C++标准库" = libstdc++ (GNU C++ standard library)
  6. 在"项目"/">
  7. 构建阶段"/"将二进制文件与库链接"中:
    • HxModule.a
  8. 重命名文件:AppDelegate.m -> AppDelegate.mm
  9. 编辑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 项目中:

  • include来自Haxe的输出;
  • include来自哈克塞利布hxcpp
可能出现的问题:

在撰写本文时,只有一个可能的问题。可以通过编辑文件{haxelib:hxcpp}/include/hxcpp.h来解决。只需在文件开头添加几行:

{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 .... .

示例项目。

相关内容

  • 没有找到相关文章

最新更新