aboutsummaryrefslogtreecommitdiff
path: root/C++ Project Structure.txt
diff options
context:
space:
mode:
authors1n <[email protected]>2019-08-16 02:41:37 -0700
committerGitHub <[email protected]>2019-08-16 02:41:37 -0700
commit9bc1ae75966f96bdb31f6294f3b9f020d4ef9ffd (patch)
treefb6fa2de9e4691df304b82c815027a7977552c98 /C++ Project Structure.txt
parentUpdate README.txt (diff)
downloadcpp-terminology-9bc1ae75966f96bdb31f6294f3b9f020d4ef9ffd.tar.xz
cpp-terminology-9bc1ae75966f96bdb31f6294f3b9f020d4ef9ffd.zip
Create C++ Project Structure.txt
Diffstat (limited to 'C++ Project Structure.txt')
-rw-r--r--C++ Project Structure.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/C++ Project Structure.txt b/C++ Project Structure.txt
new file mode 100644
index 0000000..f3de498
--- /dev/null
+++ b/C++ Project Structure.txt
@@ -0,0 +1,25 @@
+Project_name
+ |
+ |---- CMakeLists.txt
+ |
+ |---- include
+ | |
+ | |---- Project_name
+ | |
+ | |---- public_header(s).h
+ |
+ ---- src
+ | |
+ | |---- private_header(s).h
+ | |
+ | |---- code(s).cpp
+ |
+ |
+ |---- libs
+ | |
+ | |---- A
+ | |
+ | |---- B
+ |
+ |
+ |---- tests