tcbuilder 1.1.3 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/tcbuild.js +2 -1
  2. package/package.json +1 -1
package/dist/tcbuild.js CHANGED
@@ -243,7 +243,8 @@ process.once('beforeExit', async () => {
243
243
  const file = group.files[fileName];
244
244
  const fileLastExt = fileName.split('.').pop();
245
245
  let obj_out = `${build_dir}/${fileName}.o`;
246
- objects += ` ${obj_out}`;
246
+ if (file.includeInFinalOutput)
247
+ objects += ` ${obj_out}`;
247
248
  let final_flags = `${ /* globalSrcFileFlags */''} ${file.flags ?? ''}`;
248
249
  for (const ext of fileName.split('.').slice(1)) {
249
250
  if (ext.length <= 0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tcbuilder",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Build System",
5
5
  "homepage": "https://github.com/umutfahriozkan/tcbuild#readme",
6
6
  "bugs": {