mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-02 18:46:52 +00:00
16 lines
182 B
CMake
16 lines
182 B
CMake
set(SRCS
|
|
bits/bits.cpp
|
|
bits/varint.cpp
|
|
random/perlin.cpp
|
|
hash/hash.cpp
|
|
)
|
|
|
|
set(SRCS ${SRCS})
|
|
|
|
add_library(util STATIC ${SRCS})
|
|
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|
|
|