mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
76d9209ad4
Make sure the gfx debugger unpauses when the emulator is stopped. When a wad is installed make sure directories exist. For the cmake build if a header is not provided in the check_lib macro don't check for it, and assume pkg-config was supposed to work. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6581 8ced0084-cf51-0410-be5f-012b33b47a6e
8 lines
175 B
CMake
8 lines
175 B
CMake
set(SRCS Src/VideoConfigDiag.cpp
|
|
Src/DebuggerPanel.cpp)
|
|
|
|
add_library(videouicommon STATIC ${SRCS})
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
add_definitions(-fPIC)
|
|
endif()
|