diff --git a/CMakeLists.txt b/CMakeLists.txt index b5f1fadd..33262624 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,5 +5,11 @@ set(GAME_DATA_DIR ${CMAKE_CURRENT_SOURCE_DIR}/game) add_subdirectory(game_re) +option(BUILD_TOOLING "Build the ghidra tooling" ON) + +if(BUILD_TOOLING) + add_subdirectory(tooling) +endif() + # Use highest possible C standard set_target_properties(game_re PROPERTIES C_STANDARD 23) diff --git a/tooling/main.cpp b/tooling/main.cpp new file mode 100644 index 00000000..e69de29b