mirror of
https://github.com/encounter/aurora.git
synced 2026-07-09 18:19:33 -07:00
16 lines
578 B
CMake
16 lines
578 B
CMake
add_library(aurora_os STATIC lib/dolphin/os/OSInit.cpp
|
|
lib/dolphin/os/OSMemory.cpp
|
|
lib/dolphin/os/internal.hpp
|
|
lib/dolphin/os/OSBootInfo.cpp
|
|
lib/dolphin/os/OSTime.cpp
|
|
lib/dolphin/os/OSArena.cpp
|
|
lib/dolphin/os/OSAlloc.cpp
|
|
lib/dolphin/os/OSAddress.cpp
|
|
lib/dolphin/os/OSReport.cpp
|
|
lib/dolphin/AR.cpp)
|
|
add_library(aurora::os ALIAS aurora_os)
|
|
set_target_properties(aurora_os PROPERTIES FOLDER "aurora")
|
|
|
|
target_include_directories(aurora_os PUBLIC include)
|
|
target_link_libraries(aurora_os PRIVATE aurora::core)
|