melonDS/src/CMakeLists.txt

52 lines
832 B
CMake
Raw Normal View History

2019-05-01 03:16:54 +00:00
project(core)
set (CMAKE_CXX_STANDARD 14)
2019-05-01 03:16:54 +00:00
add_library(core STATIC
ARCodeList.cpp
2020-02-14 18:26:52 +00:00
AREngine.cpp
2019-05-01 03:16:54 +00:00
ARM.cpp
ARMInterpreter.cpp
ARMInterpreter_ALU.cpp
ARMInterpreter_Branch.cpp
ARMInterpreter_LoadStore.cpp
ARM_InstrInfo.cpp
2019-05-01 03:16:54 +00:00
Config.cpp
CP15.cpp
CRC32.cpp
DMA.cpp
GBACart.cpp
2019-05-01 03:16:54 +00:00
GPU.cpp
GPU2D.cpp
GPU3D.cpp
GPU3D_OpenGL.cpp
2019-05-01 03:16:54 +00:00
GPU3D_Soft.cpp
NDS.cpp
NDSCart.cpp
OpenGLSupport.cpp
2019-05-01 03:16:54 +00:00
RTC.cpp
Savestate.cpp
SPI.cpp
SPU.cpp
Wifi.cpp
WifiAP.cpp
ARMJIT.cpp
ARMJIT_x64/ARMJIT_Compiler.cpp
2019-06-25 15:09:27 +00:00
ARMJIT_x64/ARMJIT_ALU.cpp
ARMJIT_x64/ARMJIT_LoadStore.cpp
2019-07-11 14:22:47 +00:00
ARMJIT_x64/ARMJIT_Branch.cpp
dolphin/CommonFuncs.cpp
dolphin/x64ABI.cpp
dolphin/x64CPUDetect.cpp
dolphin/x64Emitter.cpp
dolphin/MemoryUtil.cpp
2019-05-01 03:16:54 +00:00
)
if (WIN32)
2019-05-25 22:46:35 +00:00
target_link_libraries(core ole32 comctl32 ws2_32 opengl32)
else()
2019-05-31 22:27:54 +00:00
target_link_libraries(core GL EGL)
2019-05-01 03:16:54 +00:00
endif()