mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
19 lines
267 B
CMake
19 lines
267 B
CMake
set(SRCS
|
|
LAMEString.cpp
|
|
colorutil.cpp
|
|
error_context.cpp
|
|
display.cpp)
|
|
|
|
set(SRCS ${SRCS})
|
|
|
|
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)
|