diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | src/stellar/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/stellar/stellar.cpp | 7 |
3 files changed, 10 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..40a51e7 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory(stellar)
\ No newline at end of file diff --git a/src/stellar/CMakeLists.txt b/src/stellar/CMakeLists.txt new file mode 100644 index 0000000..d20f8b5 --- /dev/null +++ b/src/stellar/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(stellar stellar.cpp) +install(TARGETS stellar RUNTIME DESTINATION bin COMPONENT Program)
\ No newline at end of file diff --git a/src/stellar/stellar.cpp b/src/stellar/stellar.cpp new file mode 100644 index 0000000..e44548c --- /dev/null +++ b/src/stellar/stellar.cpp @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main(int argc, char **argv) +{ + printf("Hello Stellar\n"); + return 0; +}
\ No newline at end of file |
