aboutsummaryrefslogtreecommitdiff
path: root/kern/CMakeLists.txt
blob: b2c7e2fbb9bf00cd67baacf82507eb0f77191aa1 (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::all"

    "gcc"
)