build: convert build system to CMake

This commit is contained in:
2024-09-17 17:50:15 +01:00
parent 8497962af6
commit 065fdeec65
7 changed files with 96 additions and 0 deletions

8
tools/CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.13)
project(magenta-tools C)
set(tool_dirs e64patch)
foreach (dir ${tool_dirs})
add_subdirectory(${dir})
endforeach (dir)