mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-01 04:18:05 -05:00
Also added an option to explicitly disable building with MPG framedumps. To use it add -DENCODE_FRAMEDUMPS=OFF to cmake on the command line. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6429 8ced0084-cf51-0410-be5f-012b33b47a6e
9 lines
194 B
CMake
9 lines
194 B
CMake
set(SRCS Src/CodeView.cpp
|
|
Src/DebuggerUIUtil.cpp
|
|
Src/MemoryView.cpp)
|
|
|
|
add_library(debugger_ui_util STATIC ${SRCS})
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
add_definitions(-fPIC)
|
|
endif()
|