summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDawsyn Schraiber <[email protected]>2023-09-02 09:55:10 -0400
committerDawsyn Schraiber <[email protected]>2023-09-02 09:55:10 -0400
commit1b8af4198f7f18ccbfb336709f20a88e26e2b195 (patch)
tree90a474cfd7085355e4e1d7ae9831da7d65e9e693 /src
parentf76e1efbe420af14078eb1a98551804b830c99c1 (diff)
downloadactive-drag-system-1b8af4198f7f18ccbfb336709f20a88e26e2b195.tar.gz
active-drag-system-1b8af4198f7f18ccbfb336709f20a88e26e2b195.tar.bz2
active-drag-system-1b8af4198f7f18ccbfb336709f20a88e26e2b195.zip
Project Structure and Build System
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt1
-rw-r--r--src/active-drag-system.cpp7
2 files changed, 8 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
new file mode 100644
index 0000000..95d2f15
--- /dev/null
+++ b/src/CMakeLists.txt
@@ -0,0 +1 @@
+add_executable (ads active-drag-system.cpp)
diff --git a/src/active-drag-system.cpp b/src/active-drag-system.cpp
new file mode 100644
index 0000000..2b76215
--- /dev/null
+++ b/src/active-drag-system.cpp
@@ -0,0 +1,7 @@
+#include <cstdlib>
+#include <iostream>
+
+int main() {
+ std::cout << "ADS Deployed!" << std::endl;
+ return EXIT_SUCCESS;
+}