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)
|
||
|
|