aboutsummaryrefslogtreecommitdiff
path: root/kern/CMakeLists.txt
blob: 677fdc2a6497b15fe0a1127521439fb843232b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
add_library("kern" OBJECT)
add_library("os::kern" ALIAS "kern")

target_sources("kern" PRIVATE
    "src/abort.cpp"
    "src/error.cpp"
    "src/kstd.cpp"
    "src/main.cpp"
    "src/print.cpp"
)

target_include_directories("kern" PUBLIC
    "include"
)

target_link_libraries("kern" PUBLIC
    "arch::any"
)