13 lines
141 B
CMake
13 lines
141 B
CMake
enable_language(CXX ASM)
|
|
|
|
add_library(
|
|
GbaStartup OBJECT
|
|
gba_crt0.s
|
|
cstartup.cpp
|
|
)
|
|
|
|
target_link_libraries(
|
|
GbaStartup PUBLIC
|
|
OxStd
|
|
)
|