aboutsummaryrefslogtreecommitdiff
path: root/source/boot/arch/x86_64/CMakeLists.txt
diff options
context:
space:
mode:
authorfelix.morgner@ost.ch <felix.morgner@gmail.com>2023-10-07 10:45:45 +0200
committerfelix.morgner@ost.ch <felix.morgner@gmail.com>2023-10-07 10:45:45 +0200
commit68db123a2f37a66aea218fa48a5bab8ea6b12951 (patch)
tree911c21ba6ab3694ab6339186001a14c04fe889ea /source/boot/arch/x86_64/CMakeLists.txt
parentfa1f8636d2e2368c9cb446284946570565563f4f (diff)
downloadkernel-68db123a2f37a66aea218fa48a5bab8ea6b12951.tar.xz
kernel-68db123a2f37a66aea218fa48a5bab8ea6b12951.zip
x86_64: implement first bootable kernel
Diffstat (limited to 'source/boot/arch/x86_64/CMakeLists.txt')
-rw-r--r--source/boot/arch/x86_64/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
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