mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
10 lines
362 B
CMake
10 lines
362 B
CMake
|
|
# Feral Interactive
|
||
|
|
|
||
|
|
add_library(3rdparty_feralinteractive INTERFACE)
|
||
|
|
|
||
|
|
if (CMAKE_SYSTEM MATCHES "Linux")
|
||
|
|
target_include_directories(3rdparty_feralinteractive INTERFACE feralinteractive/lib)
|
||
|
|
target_compile_definitions(3rdparty_feralinteractive INTERFACE -DGAMEMODE_AVAILABLE)
|
||
|
|
target_link_libraries(3rdparty_feralinteractive INTERFACE feralinteractive)
|
||
|
|
endif()
|