mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-15 00:41:41 +02:00
![Glenn Rice](/assets/img/avatar_default.png)
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
10 lines
190 B
CMake
10 lines
190 B
CMake
set(SRCS clrun/clrun.c
|
|
clrun/dynamiclib.c
|
|
clrun/gencl.c
|
|
clrun/genclgl.c)
|
|
|
|
add_library(clrun STATIC ${SRCS})
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
add_definitions(-fPIC)
|
|
endif()
|