init
This commit is contained in:
commit
a3db719405
2 changed files with 17 additions and 0 deletions
12
CMakeLists.txt
Normal file
12
CMakeLists.txt
Normal file
|
@ -0,0 +1,12 @@
|
|||
cmake_minimum_required(VERSION 3.14)
|
||||
|
||||
project(clippy_terminal)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
file(GLOB_RECURSE SOURCES_FILES src/*)
|
||||
|
||||
add_executable(clippy_terminal ${SOURCES_FILES})
|
||||
target_include_directories(clippy_terminal PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||
|
||||
install(TARGETS clippy_terminal DESTINATION bin)
|
Loading…
Add table
Add a link
Reference in a new issue