c3c icon indicating copy to clipboard operation
c3c copied to clipboard

Allow the ability to specifiy build output file extension via project.json

Open Ked29 opened this issue 1 year ago • 3 comments

A small feature request is the ability to specify a build output file extension in project.json, as shown below. This helps developers who need a different file extension for specific use cases/scenarios and allows them to not have to manually rename the build output to that extension every time.

{
  "langrev": "1",
  "warnings": [ "no-unused" ],
  "dependency-search-paths": [ "lib" ],
  "dependencies": [ ],
  "linker-search-paths": ["lib"],
  "linked-libraries": [ ],
  "authors": [ "Me" ],
  "version": "0.1.0",
  "sources": [ "src/**" ],
  "output": "build",
  "targets": {
    "MyProject": {
      "type": "dynamic-lib",
      "extension": ".asi"
    }
  },
  "cpu": "generic",
  "opt": "O0",
}

Ked29 avatar Aug 05 '24 18:08 Ked29

Hello! Can I take a look at this issue?

Josecespedesant avatar Aug 06 '24 04:08 Josecespedesant

Yes, absolutely.

lerno avatar Aug 06 '24 13:08 lerno

Thank you! Will work on this

Josecespedesant avatar Aug 08 '24 00:08 Josecespedesant