################################################ # # Framework # Copyright (C) 2020 # John Ryland # All rights reserved # ################################################ cmake_minimum_required(VERSION 3.5.0) # set the project name and version project(FrameworkTest VERSION 1.0) # specify the C++ standard set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD_REQUIRED True) # add the Framework library add_subdirectory(source) # add the FrameworkTest executable add_subdirectory(tests)