2019-05-01 03:16:54 +00:00
|
|
|
project(core)
|
|
|
|
|
|
|
|
add_library(core STATIC
|
|
|
|
ARM.cpp
|
|
|
|
ARMInterpreter.cpp
|
|
|
|
ARMInterpreter_ALU.cpp
|
|
|
|
ARMInterpreter_Branch.cpp
|
|
|
|
ARMInterpreter_LoadStore.cpp
|
|
|
|
Config.cpp
|
|
|
|
CP15.cpp
|
|
|
|
CRC32.cpp
|
|
|
|
DMA.cpp
|
|
|
|
GPU.cpp
|
|
|
|
GPU2D.cpp
|
|
|
|
GPU3D.cpp
|
2019-05-28 17:48:59 +00:00
|
|
|
GPU3D_OpenGL.cpp
|
2019-05-01 03:16:54 +00:00
|
|
|
GPU3D_Soft.cpp
|
|
|
|
NDS.cpp
|
|
|
|
NDSCart.cpp
|
2019-05-28 17:48:59 +00:00
|
|
|
OpenGLSupport.cpp
|
2019-05-01 03:16:54 +00:00
|
|
|
RTC.cpp
|
|
|
|
Savestate.cpp
|
|
|
|
SPI.cpp
|
|
|
|
SPU.cpp
|
|
|
|
Wifi.cpp
|
|
|
|
WifiAP.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
if (WIN32)
|
2019-05-25 22:46:35 +00:00
|
|
|
target_link_libraries(core ole32 comctl32 ws2_32 opengl32)
|
2019-05-25 22:37:51 +00:00
|
|
|
else()
|
2019-05-28 17:48:59 +00:00
|
|
|
target_link_libraries(core GL)
|
2019-05-01 03:16:54 +00:00
|
|
|
endif()
|