Skip to content

Commit 669356f

Browse files
committed
first commit
0 parents  commit 669356f

File tree

6 files changed

+713
-0
lines changed

6 files changed

+713
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/out/
2+
.vs

CMakeLists.txt

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CMakeList.txt: проект CMake для CMakeProject1; включите исходный код и определения,
2+
# укажите здесь логику для конкретного проекта.
3+
#
4+
cmake_minimum_required (VERSION 3.8)
5+
6+
project ("CMakeProject1")
7+
8+
# Добавьте источник в исполняемый файл этого проекта.
9+
add_executable (CMakeProject1 "CMakeProject1.cpp" "CMakeProject1.h")
10+
11+
# TODO: Добавьте тесты и целевые объекты, если это необходимо.

0 commit comments

Comments
 (0)