From 68db123a2f37a66aea218fa48a5bab8ea6b12951 Mon Sep 17 00:00:00 2001 From: "felix.morgner@ost.ch" Date: Sat, 7 Oct 2023 10:45:45 +0200 Subject: x86_64: implement first bootable kernel --- source/boot/arch/x86_64/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 source/boot/arch/x86_64/CMakeLists.txt (limited to 'source/boot/arch/x86_64/CMakeLists.txt') diff --git a/source/boot/arch/x86_64/CMakeLists.txt b/source/boot/arch/x86_64/CMakeLists.txt new file mode 100644 index 0000000..454f347 --- /dev/null +++ b/source/boot/arch/x86_64/CMakeLists.txt @@ -0,0 +1,8 @@ +add_library("boot" STATIC + "src/boot.s" + "src/crti.s" + "src/crtn.s" + "src/multiboot.s" +) + +add_library("teachos::boot" ALIAS "boot") \ No newline at end of file -- cgit v1.2.3