Skip to content

Commit 2dc6fb6

Browse files
committed
assets added, changes in .gitignore, cmakelists
1 parent f06429f commit 2dc6fb6

17 files changed

+4734
-3
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44

55
.idea/
66

7-
CMakeLists.txt
7+
CMakeLists.txt
8+
9+
.cache/

CMakeLists.txt

+11-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,17 @@ set(CMAKE_C_STANDARD 11)
55
set(CMAKE_CXX_STANDARD 11)
66

77

8-
# Our Project
9-
add_executable(${PROJECT_NAME} src/cycloid.c src/sketch.c src/fourier.c test/drawFourier.c)
8+
# The Project
9+
add_executable(
10+
${PROJECT_NAME}
11+
src/cycloid.c
12+
src/sketch.c
13+
src/fourier.c
14+
src/drawing.c
15+
src/readPoints.c
16+
test/drawSVG.c
17+
#main.c
18+
)
1019

1120
# Generate compile_commands.json
1221
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
110 KB
Loading
Loading

assets/png-images/face-sir-vivek.png

173 KB
Loading
29.4 KB
Loading

assets/png-images/plaksha.png

3.97 KB
Loading

assets/png-images/test.png

19.9 KB
Loading

assets/points-svg/file.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2
2+
3
3+
1 2
4+
3 4
5+
5 6
6+
2
7+
7 8
8+
9 10

0 commit comments

Comments
 (0)