Newer
Older
Import / research / framework / CMakeLists.txt
@John Ryland John Ryland on 22 Dec 2020 491 bytes import NUC files
################################################
#
#  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)