diff options
| author | Andrei Florea <[email protected]> | 2022-10-05 16:20:12 -0700 |
|---|---|---|
| committer | Andrei Florea <[email protected]> | 2022-10-05 16:20:12 -0700 |
| commit | cba9cf1f3e454bebbdb6133becb8f7a60bcde868 (patch) | |
| tree | bb19da5019f7ffa7f2ea0c735f661c6ac0d02659 | |
| parent | Adding files that appeared after trying to debug (diff) | |
| download | cst116-lab0-debugging-florea-cba9cf1f3e454bebbdb6133becb8f7a60bcde868.tar.xz cst116-lab0-debugging-florea-cba9cf1f3e454bebbdb6133becb8f7a60bcde868.zip | |
Adding .gitignore file for my IDE 'CLion'
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | .idea/.gitignore | 8 | ||||
| -rw-r--r-- | .idea/cst116-lab0-debugging-florea.iml | 8 | ||||
| -rw-r--r-- | .idea/modules.xml | 8 | ||||
| -rw-r--r-- | .idea/vcs.xml | 6 |
5 files changed, 34 insertions, 0 deletions
@@ -7,6 +7,10 @@ *.o *.obj +# CLion things specific for Andrei +/cmake-build-debug +CMakeLists.txt + # Precompiled Headers *.gch *.pch diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/cst116-lab0-debugging-florea.iml b/.idea/cst116-lab0-debugging-florea.iml new file mode 100644 index 0000000..bc2cd87 --- /dev/null +++ b/.idea/cst116-lab0-debugging-florea.iml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module type="CPP_MODULE" version="4"> + <component name="NewModuleRootManager"> + <content url="file://$MODULE_DIR$" /> + <orderEntry type="inheritedJdk" /> + <orderEntry type="sourceFolder" forTests="false" /> + </component> +</module>
\ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..fce7667 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectModuleManager"> + <modules> + <module fileurl="file://$PROJECT_DIR$/.idea/cst116-lab0-debugging-florea.iml" filepath="$PROJECT_DIR$/.idea/cst116-lab0-debugging-florea.iml" /> + </modules> + </component> +</project>
\ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="VcsDirectoryMappings"> + <mapping directory="$PROJECT_DIR$" vcs="Git" /> + </component> +</project>
\ No newline at end of file |