CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/ext/libkirk/CMakeLists.txt
Views: 1401
1
set(SRCS
2
AES.c
3
bn.c
4
ec.c
5
kirk_engine.c
6
SHA1.c
7
)
8
9
set(SRCS ${SRCS})
10
11
add_library(kirk STATIC ${SRCS})
12
13
if(UNIX)
14
add_definitions(-fPIC)
15
endif(UNIX)
16
17
18