1
0
mirror of https://github.com/ScrelliCopter/VGM-Tools synced 2025-02-21 04:09:25 +11:00

DspTool dump

This commit is contained in:
2023-03-19 08:41:31 +11:00
parent 9cdae38cbf
commit ac89564669
6 changed files with 810 additions and 0 deletions

9
dsptools/CMakeLists.txt Normal file
View File

@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
project(DspTool LANGUAGES C)
set(CMAKE_C_STANDARD 99)
set(HEADERS dsptool.h)
set(SOURCES math.c decode.c encode.c)
add_library(DspTool ${HEADERS} ${SOURCES})