11 lines
116 B
CMake
11 lines
116 B
CMake
enable_language(C ASM)
|
|
add_library(
|
|
GbaStartup
|
|
gba_crt0.s
|
|
cstartup.cpp
|
|
)
|
|
|
|
target_link_libraries(
|
|
GbaStartup
|
|
)
|