mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-04 20:06:51 +00:00
20 lines
281 B
CMake
20 lines
281 B
CMake
set(SRCS
|
|
colorutil.cpp
|
|
timeutil.cpp
|
|
../thread/threadutil.cpp
|
|
display.cpp
|
|
buffer.cpp
|
|
backtrace.cpp)
|
|
|
|
add_library(base STATIC ${SRCS})
|
|
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|
|
|
|
add_library(timeutil STATIC timeutil.cpp)
|
|
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|