setting up dirs

This commit is contained in:
2026-09-11 17:05:03 -04:00
parent e3c90f6c16
commit 4807a79dee
4 changed files with 23 additions and 5 deletions
+6
View File
@@ -0,0 +1,6 @@
import std.stdio;
void main()
{
writeln("same deal");
}
+6
View File
@@ -0,0 +1,6 @@
import std.stdio;
void main()
{
writefln("stub for now until i get the actual emulator done");
}
+2 -1
View File
@@ -1,5 +1,6 @@
import std.stdio;
void main() {
void main()
{
writeln("hello world!");
}
+7 -2
View File
@@ -1,9 +1,15 @@
add_rules("mode.debug", "mode.release")
target("weirdcpu")
do
set_kind("binary")
add_files("src/*.d")
if is_mode("debug") then
set_toolchains("dmd")
else
set_toolchains("ldc")
end
end
--
-- If you want to known more usage about xmake, please see https://xmake.io
--
@@ -72,4 +78,3 @@ target("weirdcpu")
--
-- @endcode
--