hxcpp

Haxe - Create a C++ Stand-alone executable

岁酱吖の 提交于 2019-12-07 15:41:17
问题 I have written a haxe program that tries to communicate with a remote server. I was able to compile to the C++ target successfully. The executable runs just fine on my system. However, when I try to run the same on another windows box, it fails with the following error Error: Could not load module std@socket_init__0 I then installed haxe and hxcpp which worked like a charm. I was able to run the exe. I understand now that there is dependency on hxcpp. That still did not solve my problem as I

How to create iOS- & OSX- library from Haxe and use it in native application?

夙愿已清 提交于 2019-12-04 08:39:38
问题 I have an crossplatform implementation of own protocol, data-structures and logic written on Haxe. How I can build and use it in my enterprise-application (with native UI) for iOS and OSX? 回答1: How to create iOS- / OSX- library from Haxe and use it in native application Actuality: 12.2014; HXCPP-ver.: 3.1.39 ~ git . Dependency: hxcpp 1. Haxe -> Library Create a new Haxe-project with main class named HxModule . src/HxModule.hx class HxModule { public static function main() { Sys.println('Hello

How to create iOS- & OSX- library from Haxe and use it in native application?

纵饮孤独 提交于 2019-12-03 01:33:06
I have an crossplatform implementation of own protocol, data-structures and logic written on Haxe. How I can build and use it in my enterprise-application (with native UI) for iOS and OSX? Alexander Ko How to create iOS- / OSX- library from Haxe and use it in native application Actuality: 12.2014; HXCPP-ver.: 3.1.39 ~ git . Dependency: hxcpp 1. Haxe -> Library Create a new Haxe-project with main class named HxModule . src/HxModule.hx class HxModule { public static function main() { Sys.println('Hello from HxModule: "${test()}"'); } @:headerCode public static function test():Int { return 101; }