3 Commits

Author SHA1 Message Date
9c8d79bf67 update to v1.5 2024-12-06 17:11:46 +01:00
95701058f1 fix Windows linking 2024-12-06 17:11:27 +01:00
c7f52d9ce8 update to v1.4 2024-12-06 17:06:04 +01:00
2 changed files with 5 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
#include "IO.h"
#define ASSEMBLEUR_VERSION "1.3"
#define ASSEMBLEUR_VERSION "1.5"
int main(int argc, char** argv) {

View File

@@ -9,3 +9,7 @@ target("Assembleur")
add_files("src/*.cpp")
set_rundir(".")
add_packages("argparse")
if is_os("windows") then
add_ldflags("-static", "-static-libstdc++")
end