This commit is contained in:
Timofey 2022-08-10 09:17:11 +03:00
commit 5659d5fdaf
5 changed files with 211 additions and 0 deletions

11
CMakeLists.txt Normal file
View file

@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.14)
project(cppshell)
set(CMAKE_CXX_STANDARD 17)
file(GLOB_RECURSE SOURCES_FILES src/*)
add_library(cppshell ${SOURCES_FILES})
target_include_directories(cppshell PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include)