mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
Remove unnecessary Src/ folders
This commit is contained in:
@ -1,52 +1,52 @@
|
||||
set(SRCS Src/BreakPoints.cpp
|
||||
Src/CDUtils.cpp
|
||||
Src/ColorUtil.cpp
|
||||
Src/ConsoleListener.cpp
|
||||
Src/FileSearch.cpp
|
||||
Src/FileUtil.cpp
|
||||
Src/Hash.cpp
|
||||
Src/IniFile.cpp
|
||||
Src/LogManager.cpp
|
||||
Src/MathUtil.cpp
|
||||
Src/MemArena.cpp
|
||||
Src/MemoryUtil.cpp
|
||||
Src/Misc.cpp
|
||||
Src/MsgHandler.cpp
|
||||
Src/NandPaths.cpp
|
||||
Src/SettingsHandler.cpp
|
||||
Src/SDCardUtil.cpp
|
||||
Src/StringUtil.cpp
|
||||
Src/SymbolDB.cpp
|
||||
Src/SysConf.cpp
|
||||
Src/Thread.cpp
|
||||
Src/Timer.cpp
|
||||
Src/Version.cpp
|
||||
Src/x64ABI.cpp
|
||||
Src/x64Analyzer.cpp
|
||||
Src/x64Emitter.cpp
|
||||
Src/Crypto/bn.cpp
|
||||
Src/Crypto/ec.cpp)
|
||||
set(SRCS BreakPoints.cpp
|
||||
CDUtils.cpp
|
||||
ColorUtil.cpp
|
||||
ConsoleListener.cpp
|
||||
FileSearch.cpp
|
||||
FileUtil.cpp
|
||||
Hash.cpp
|
||||
IniFile.cpp
|
||||
LogManager.cpp
|
||||
MathUtil.cpp
|
||||
MemArena.cpp
|
||||
MemoryUtil.cpp
|
||||
Misc.cpp
|
||||
MsgHandler.cpp
|
||||
NandPaths.cpp
|
||||
SettingsHandler.cpp
|
||||
SDCardUtil.cpp
|
||||
StringUtil.cpp
|
||||
SymbolDB.cpp
|
||||
SysConf.cpp
|
||||
Thread.cpp
|
||||
Timer.cpp
|
||||
Version.cpp
|
||||
x64ABI.cpp
|
||||
x64Analyzer.cpp
|
||||
x64Emitter.cpp
|
||||
Crypto/bn.cpp
|
||||
Crypto/ec.cpp)
|
||||
|
||||
if(_M_ARM) #ARM
|
||||
set(SRCS ${SRCS}
|
||||
Src/ArmCPUDetect.cpp
|
||||
Src/ArmEmitter.cpp)
|
||||
ArmCPUDetect.cpp
|
||||
ArmEmitter.cpp)
|
||||
else()
|
||||
if(NOT _M_GENERIC) #X86
|
||||
set(SRCS ${SRCS}
|
||||
Src/x64FPURoundMode.cpp
|
||||
x64FPURoundMode.cpp
|
||||
)
|
||||
endif()
|
||||
set(SRCS ${SRCS} Src/x64CPUDetect.cpp)
|
||||
set(SRCS ${SRCS} x64CPUDetect.cpp)
|
||||
endif()
|
||||
if(_M_GENERIC) #Generic
|
||||
set(SRCS ${SRCS}
|
||||
Src/GenericFPURoundMode.cpp)
|
||||
GenericFPURoundMode.cpp)
|
||||
endif()
|
||||
if(WIN32)
|
||||
set(SRCS ${SRCS} Src/ExtendedTrace.cpp)
|
||||
set(SRCS ${SRCS} ExtendedTrace.cpp)
|
||||
endif(WIN32)
|
||||
|
||||
enable_precompiled_headers(Src/stdafx.h Src/stdafx.cpp SRCS)
|
||||
enable_precompiled_headers(stdafx.h stdafx.cpp SRCS)
|
||||
|
||||
add_dolphin_library(common "${SRCS}" "${CMAKE_THREAD_LIBS_INIT}")
|
||||
|
Reference in New Issue
Block a user