aboutsummaryrefslogtreecommitdiff
path: root/kern/CMakeLists.txt
blob: 9bfe9e8a6c942eb48ac90942eea9680d430392c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
add_library("kern" OBJECT
    "src/abort.cpp"
    "src/error.cpp"
    "src/main.cpp"
    "src/print.cpp"
)

target_include_directories("kern" PUBLIC
    "include"
)

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

    "gcc"
)