First coommit

This commit is contained in:
2017-10-18 10:04:20 +03:00
commit 4c0f1d6552
4 changed files with 65 additions and 0 deletions

42
.gitignore vendored Normal file
View File

@@ -0,0 +1,42 @@
# cmake
build
### C++ ###
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
### Linux ###
*~
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*

3
CMakeLists.txt Normal file
View File

@@ -0,0 +1,3 @@
cmake_minimum_required(VERSION 3.3)
add_executable(main main.cpp)
set(SOURCE_EXE main.cpp )

11
README.md Normal file
View File

@@ -0,0 +1,11 @@
# Заголовок
## Постановка задачи
## Про эту программу
### Зависимости
Их всего две:
1. cmake, для генерации скриптов сборки
2. C++11

9
main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
return 0;
}