1
0
mirror of https://github.com/ScrelliCopter/VGM-Tools synced 2025-02-21 04:09:25 +11:00
Files
VGM-Tools/spctools/spc2it/CMakeLists.txt
2019-09-26 14:06:37 +10:00

17 lines
237 B
CMake

cmake_minimum_required(VERSION 2.8)
project(spc2it)
set(spc2it_sources
emu.c
it.c
main.c
sound.c
spc700.c
emu.h
it.h
sneese_spc.h
sound.h
spc2ittypes.h)
add_executable(spc2it ${spc2it_sources})
target_link_libraries(spc2it m)