commit
This commit is contained in:
commit
5659d5fdaf
5 changed files with 211 additions and 0 deletions
11
CMakeLists.txt
Normal file
11
CMakeLists.txt
Normal 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)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue