Joris Dauphin
Joris Dauphin
Current submodule assistant indeed points to a version which might not compile when OPENSSL is OFF. Once fixed, I expect Codelite build to pass.
Are you concerned by extractor/installer, scripts or engine? - For engine, you have to go to https://github.com/Wargus/stratagus - For scripts, no build is needed, modifying lua script can be done...
So you have to go to the engine first, and use script (and extracted data) from wargus (using installer might help here for the data). There are CIs for the...
[W32.AIDetectMalware is a very common false positive that may appear on a VirusTotal scan.](https://hackerdose.com/malware/w32-aidetectmalware-bkav-pro/)
As a note, I have found https://github.com/mtangoo/wxDatabase which seems to be the successor of DatabaseLayer, but it seems not ready to be replaced as-is (as submodule). Extra note, MySql support...
There is a bug with mine depletion which I think is related.
*"INVALID MESSAGE WITH QUOTES"* means that our error message is "ill-formed" (i.e containing either `'` or `"`) ... The code has been fixed by [1ac332fe ](https://github.com/Wargus/stratagus/commit/1ac332fe1b1b8f47616d112feb67b63f4d918e09) (Jan 5th, 2023) Correct...
Showing configuration, and log might be helpful
`fatalwarnings` has similar issue.
``` postbuildcommands ("{COPY} %{cfg.buildtarget.abspath} ".. os.getcwd() .."/../") ``` Should use [`%[..]`](https://premake.github.io/docs/Tokens/#path-in-commands) ``` postbuildcommands ("{COPYFILE} %[%{cfg.buildtarget.abspath}] ".. os.getcwd() .."/../") ``` `os.getcwd() .."/../"` is probably wrong too, maybe `%[%{!wks.location/../}]`?