mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-21 06:33:22 +00:00
17 lines
198 B
CMake
17 lines
198 B
CMake
set(SRCS
|
|
bits/bits.cpp
|
|
bits/varint.cpp
|
|
random/perlin.cpp
|
|
hash/hash.cpp
|
|
text/utf8.cpp
|
|
)
|
|
|
|
set(SRCS ${SRCS})
|
|
|
|
add_library(util STATIC ${SRCS})
|
|
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|
|
|