13 lines
236 B
CMake
13 lines
236 B
CMake
|
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})
|