diff options
| author | Dawsyn Schraiber <[email protected]> | 2023-09-02 09:55:10 -0400 |
|---|---|---|
| committer | Dawsyn Schraiber <[email protected]> | 2023-09-02 09:55:10 -0400 |
| commit | 1b8af4198f7f18ccbfb336709f20a88e26e2b195 (patch) | |
| tree | 90a474cfd7085355e4e1d7ae9831da7d65e9e693 /src | |
| parent | f76e1efbe420af14078eb1a98551804b830c99c1 (diff) | |
| download | active-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.txt | 1 | ||||
| -rw-r--r-- | src/active-drag-system.cpp | 7 |
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; +} |
