wut/tools/CMakeLists.txt
James Benton 8af0ffe9c7 Move wut to using CMake instead of Makefiles.
The old makefile solution will still be around on branch "make".
2017-03-23 12:18:02 +00:00

12 lines
217 B
CMake

cmake_minimum_required(VERSION 3.2)
project(wut-tools)
set(CMAKE_CXX_STANDARD 14)
include_directories("common")
add_subdirectory(ext)
add_subdirectory(elf2rpl)
add_subdirectory(readrpl)
add_subdirectory(implcheck)