[nostalgia/core/gba] Move cstartup.cpp back to gbastartup

This commit is contained in:
Gary Talent 2020-02-11 23:18:18 -06:00
parent 29734d5ee1
commit a66f1499a4
3 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,7 @@ enable_language(C ASM)
add_library(
GbaStartup
gba_crt0.s
cstartup.cpp
)
target_link_libraries(

View File

@ -1,7 +1,6 @@
if(NOSTALGIA_BUILD_TYPE STREQUAL "GBA")
add_library(
NostalgiaCore-GBA
cstartup.cpp
core.cpp
gfx.cpp
media.cpp
@ -33,4 +32,4 @@ if(NOSTALGIA_BUILD_TYPE STREQUAL "Native")
)
target_link_libraries(NostalgiaCore-GBA_Test NostalgiaCore)
add_test("NostalgiaCore-GBA\\ Test\\ malloc" NostalgiaCore-GBA_Test malloc)
endif()
endif()