mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
eda716b164
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6497 8ced0084-cf51-0410-be5f-012b33b47a6e
49 lines
1.0 KiB
CMake
49 lines
1.0 KiB
CMake
set(SRCS Src/ABI.cpp
|
|
Src/BreakPoints.cpp
|
|
Src/CDUtils.cpp
|
|
Src/ColorUtil.cpp
|
|
Src/ConsoleListener.cpp
|
|
Src/CPUDetect.cpp
|
|
Src/DynamicLibrary.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/OpenCL.cpp
|
|
Src/Plugin.cpp
|
|
Src/PluginDSP.cpp
|
|
Src/PluginVideo.cpp
|
|
Src/SDCardUtil.cpp
|
|
Src/StringUtil.cpp
|
|
Src/SymbolDB.cpp
|
|
Src/SysConf.cpp
|
|
Src/Thread.cpp
|
|
Src/Thunk.cpp
|
|
Src/Timer.cpp
|
|
Src/Version.cpp
|
|
Src/x64Analyzer.cpp
|
|
Src/x64Emitter.cpp
|
|
Src/Crypto/bn.cpp
|
|
Src/Crypto/ec.cpp
|
|
Src/Crypto/md5.cpp
|
|
Src/Crypto/sha1.cpp)
|
|
|
|
if(WIN32)
|
|
set(SRCS ${SRCS} Src/ExtendedTrace.cpp Src/stdafx.cpp)
|
|
endif(WIN32)
|
|
|
|
include_directories("${PROJECT_BINARY_DIR}/Source/Core/Common/Src")
|
|
|
|
add_library(common STATIC ${SRCS})
|
|
target_link_libraries(common ${CMAKE_DL_LIBS})
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
add_definitions(-fPIC)
|
|
endif()
|