mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-03 19:21:13 +00:00
15 lines
209 B
CMake
15 lines
209 B
CMake
set(SRCS
|
|
chunk_file.cpp
|
|
zip_read.cpp
|
|
file_util.cpp
|
|
free.cpp)
|
|
|
|
set(SRCS ${SRCS})
|
|
|
|
add_library(file STATIC ${SRCS})
|
|
target_link_libraries(file general zip)
|
|
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|