mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-13 16:45:46 +00:00
16 lines
227 B
CMake
16 lines
227 B
CMake
set(SRCS
|
|
easy_file.cpp
|
|
chunk_file.cpp
|
|
zip_read.cpp
|
|
file_util.cpp
|
|
dialog.cpp)
|
|
|
|
set(SRCS ${SRCS})
|
|
|
|
add_library(file STATIC ${SRCS})
|
|
target_link_libraries(file general zip)
|
|
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|