work on implementing xtool

This commit is contained in:
2026-01-02 13:31:12 +02:00
parent e3faa6f53b
commit 0524866eca
17 changed files with 384 additions and 20 deletions

View File

@@ -32,6 +32,16 @@ struct CPUProject_t : public BaseProject_t
public:
Target_t m_target = Target_t::DefaultTarget();
// Is compiled as position independent executable
bool bFPIE = false;
// Is compiled as position independent code
// Use for shared libraries
bool bFPIC = false;
// TODO: rework manifests
// Android manifest
AndroidManifest_t m_androidmanifest = {};
};
//-----------------------------------------------------------------------------