# # msh/CMakeLists.txt -- # cmake_minimum_required(VERSION 2.6) project(MSH C) add_executable(msh msh.c) add_executable(msh-redirect msh-redirect.c) if(CMAKE_COMPILER_IS_GNUCC) add_definitions(--std=c99 -Wall) endif()