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/at3_standalone/CMakeLists.txt
Views: 1401
1
cmake_minimum_required (VERSION 3.16)
2
project (at3_standalone)
3
4
set(SRC_DIR .)
5
6
# format
7
set(ALL_SOURCE_FILES
8
# rapi
9
${SRC_DIR}/atrac.cpp
10
${SRC_DIR}/atrac3.cpp
11
${SRC_DIR}/atrac3plus.cpp
12
${SRC_DIR}/atrac3plusdec.cpp
13
${SRC_DIR}/atrac3plusdsp.cpp
14
${SRC_DIR}/get_bits.cpp
15
${SRC_DIR}/compat.cpp
16
${SRC_DIR}/fft.cpp
17
${SRC_DIR}/mem.cpp
18
)
19
20
add_library(at3_standalone STATIC ${ALL_SOURCE_FILES})
21
22