Replies: 2 comments 2 replies
-
Agreed. Things like this we are expecting to be added as part of a next round of development. We were first hoping to see how the apm tool was used by the community to get feedback as to the best approach here. There are a range of possible solutions we could generate / update and many have asked for IDE integration / setup solutions. Coming from a coding background my approach would be something similar to what you have suggested, but the AIR community is varied so need to consider what would be best for the community I suppose and how best to fit in with common build approaches. |
Beta Was this translation helpful? Give feedback.
-
I think that maybe APM could allow optional use of I've just created some |
Beta Was this translation helpful? Give feedback.
-
Actually to build SWC/SWF without writting
acompc
oramxmlc
we've to either:my-project/ant.xml
).my-project/build.cmd
).my-project/build.sh
).asconfig.json
and useasconfigc
from Josh Tynjala.This is all boring and clusters the project structure. It'd be nice if APM covered the
acompc
/amxmlc
commands in itsproject.apm
orpackage.json
file and had a command likeapm build-swc
, which will have, by default:--library-path+=libs
--include-sources+=src
-o=swc/package-id.swc
(or SWF)Additional semantics:
apm install
if not yet ran.Additional cases:
Package managers such as Cargo, in case of the Rust language, also do a similiar thing.
Beta Was this translation helpful? Give feedback.
All reactions