summaryrefslogtreecommitdiff
path: root/src/project.4coder
diff options
context:
space:
mode:
authorRaymaekers Luca <luca@spacehb.net>2025-10-24 12:58:52 +0200
committerRaymaekers Luca <luca@spacehb.net>2025-10-24 12:58:52 +0200
commit856fd58549e5bf50e800a665f9deb27d967df2fb (patch)
tree6950210e5ae3618b501a7045f10f8fc06dd903df /src/project.4coder
parentd8b3ca9d02377cf04a09e0f518a3385b7324bc4d (diff)
checkpoint
Diffstat (limited to 'src/project.4coder')
-rw-r--r--src/project.4coder43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/project.4coder b/src/project.4coder
deleted file mode 100644
index 0b2c2fb..0000000
--- a/src/project.4coder
+++ /dev/null
@@ -1,43 +0,0 @@
-version(2);
-project_name = "sim8086";
-patterns = {
-"*.c",
-"*.cpp",
-"*.h",
-"*.m",
-"*.bat",
-"*.sh",
-"*.4coder",
-};
-blacklist_patterns = {
-"_old.*",
-};
-load_paths_base = {
- { ".", .relative = true, .recursive = true, },
-};
-load_paths = {
- .win = load_paths_base,
- .linux = load_paths_base,
- .mac = load_paths_base,
-};
-
-commands = {
- .build = { .out = "*compilation*", .footer_panel = true, .save_dirty_files = true,
- .linux = "./code/build.sh",
- .mac = "./code/build.sh", },
- .build_release = { .out = "*compilation*", .footer_panel = false, .save_dirty_files = false,
- .win = ".\code\build.bat release",
- .linux = "./code/build.sh --release",
- .mac = "./code/build.sh --release", },
- .test_current = { .out = "*tests*", .footer_panel = false, .save_dirty_files = false,
- .linux = "./misc/test_source_line_by_line --pause-on-fail --no-color ./listings/listing_0042_completionist_decode.asm" },
- .test_all = { .out = "*tests*", .footer_panel = false, .save_dirty_files = false,
- .linux = "./misc/test_listing --no-color ./listings/listing_0037_single_register_mov.asm ./listings/listing_0038_many_register_mov.asm ./listings/listing_0039_more_movs.asm ./listings/listing_0040_challenge_movs.asm ./listings/listing_0041_add_sub_cmp_jnz.asm ./listings/listing_0042*" },
- .debug = { .linux = "gf2 ./build/sim8086", },
-};
-fkey_command = {
-.F1 = "build",
-.F2 = "build_release",
-.F3 = "test_current",
-.F4 = "test_all",
-};