1 2 3 4 5 6 7 8 9 10 11
cmake_minimum_required(VERSION 3.0) project(vmrun) add_executable(vmrun src/main.c) target_link_libraries(vmrun vm) target_compile_options(vmrun PRIVATE -Wall -Wextra)