mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-01-10 15:33:06 +00:00
20 lines
286 B
CMake
20 lines
286 B
CMake
set(SRCS
|
|
colorutil.cpp
|
|
timeutil.cpp
|
|
../thread/threadutil.cpp
|
|
error_context.cpp
|
|
display.cpp
|
|
buffer.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)
|