Make rebar compile .core files in erlang project - erlang

I am an absolute Erlang newbie and I wonder if it is possible for rebar to compile .core files using rebar3 compile. According to the documentation : https://www.rebar3.org/docs/commands rebar3 will only compile the .app.src and .erl files. And I can see that when I build my project the .core files are ignored. I would appreciate any help with this. Thanks

Related

Using WxLua and need to install miniZip

Im using Wxlua for a GUI im building but need minizip for one of my functions but have no idea how to install minizine to my lua dir.
I expect minizip = require('minizip') to work with my wxlua
minizip is not part of wxlua, so you need to follow the instructions from the source you got the package from. For example, this package provides all the necessary binaries, but requires LuaJIT or lua+luaffi to run.
Usually, it's sufficient to place binary files (*.so or *.dll) into a folder listed in package.cpath and lua files into a folder listed in package.path, but those files may have their own dependencies, so it's better to consult documentation for the module.

How to compile ActionScript projects from Github source

I am new to Flash Builder development environment. I need to use the library below in my project but don't know how to compile it to produce a .swc file. I tried importing the source folder as a Flash Builder project to no avail. Can someone help please?
This is the library I want to use:
https://github.com/fljot/Gestouch
You can build the library with both Maven and Ant, build files are already there, just take a look.
Precompiled SWCs (dev builds) are available here for now http://repository-fljot.forge.cloudbees.com/snapshot/org/gestouch/gestouch/

Compiling Vaadin project with Ant.

I am new to vaadin and I have to compile my vaadin project which has .aj and .java files with circular dependencies. When I compiled with ant, I get an error indicating/related to circular dependencies. So can pl someone guide to compile my project?
I just used maven to fix my problem. Its working for me.
Visit this link for more details maven commands and details

Compiling project with NIFs with rebar: cl.exe not found

I'm new to erlang and rebar. In my rebar project I used a dependency containing native c code and during rebar compile I'm getting error:
Name cl.exe is not recognized as an internal or external command, operable program or batch file
I guess that rebar is trying to compile c files from my dependency using Microsoft's cl.exe compiler from VisualStudio, right? The problem is that I don't have VS installed and don't want to install it.
Why rebar is trying to use cl.exe? Can I configure rebar to use different compiler to compile c files?
According to the comments in the rebar port compiler code, you can provide an alternative C compiler by adding something like this to your rebar.config:
{port_env, [{"CC", "/path/to/gcc.exe"}]}.
You will most likely have to change the CFLAGS to match the compiler. To compile NIFs and ports the OTP headers and development libraries must be compiled and available.

project dependency tree by using ant

I am trying to compile a j2ee project, and the solution file includes many source projects, libraries. some of source projects have dependency with other source projects. And this compile task will be done by using ant task. is there third party library allows me to do this task quickly?
next step after compiling will be export to ear file.
Thanks for helping.
You can do it using Grand, Ant2dot or VizAnt

Resources