mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 07:39:56 -06:00
Revamp build system
This commit is contained in:
29
src/CMakeLists.txt
Normal file
29
src/CMakeLists.txt
Normal file
@ -0,0 +1,29 @@
|
||||
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
|
||||
GPU3D_Soft.cpp
|
||||
NDS.cpp
|
||||
NDSCart.cpp
|
||||
RTC.cpp
|
||||
Savestate.cpp
|
||||
SPI.cpp
|
||||
SPU.cpp
|
||||
Wifi.cpp
|
||||
WifiAP.cpp
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
target_link_libraries(core ole32 comctl32 ws2_32)
|
||||
endif()
|
Reference in New Issue
Block a user