This commit is contained in:
Timofey 2022-08-10 10:22:33 +03:00
commit a3db719405
2 changed files with 17 additions and 0 deletions

12
CMakeLists.txt Normal file
View 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)

5
src/main.cpp Normal file
View file

@ -0,0 +1,5 @@
#include <iostream>
int main() {
std::cout << "Hello I'm clippy" << std::endl;
}