cmake_minimum_required(VERSION 3.16)

project(RemoteTran LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

set(MSOURCES
UserInterface.h
UserInterface.cxx
main.cxx
)

add_executable(UserInterface ${MSOURCES})