mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
22 lines
408 B
CMake
22 lines
408 B
CMake
find_package(Snappy)
|
|
|
|
if(NOT SNAPPY_FOUND)
|
|
add_library(snappy STATIC
|
|
snappy-c.cpp
|
|
snappy-c.h
|
|
snappy-internal.h
|
|
snappy-sinksource.h
|
|
snappy-stubs-internal.h
|
|
snappy-stubs-public.h
|
|
snappy.cpp
|
|
snappy.h
|
|
)
|
|
target_include_directories(snappy PUBLIC .)
|
|
|
|
if(NOT MSVC)
|
|
target_compile_options(snappy PRIVATE "-O3")
|
|
endif()
|
|
|
|
add_library(Snappy::Snappy ALIAS snappy)
|
|
endif()
|