diff options
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; +} |
