From d750f4dfa0ef1920bbeb951130161e04170f56cb Mon Sep 17 00:00:00 2001 From: Eric Kilmer Date: Wed, 17 Aug 2022 13:29:32 -0700 Subject: [PATCH] Add sleigh tool subdirectory project Could make it easier to build just the tools --- tools/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index e2feda0bb..2abf5b60c 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,3 +1,7 @@ +cmake_minimum_required(VERSION 3.18) + +project(sleigh_tools LANGUAGES NONE) + option(sleigh_BUILD_SPECCOMPILER "Build the sleigh spec compiler executable" ON) option(sleigh_BUILD_DECOMPILER "Build the decompiler executable" ON) option(sleigh_BUILD_GHIDRA "Build the Ghidra executable" ON)