Initial commit, building project framework
This commit is contained in:
1
src/CMakeLists.txt
Normal file
1
src/CMakeLists.txt
Normal file
@@ -0,0 +1 @@
|
||||
add_subdirectory(stellar)
|
||||
2
src/stellar/CMakeLists.txt
Normal file
2
src/stellar/CMakeLists.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
add_executable(stellar stellar.cpp)
|
||||
install(TARGETS stellar RUNTIME DESTINATION bin COMPONENT Program)
|
||||
7
src/stellar/stellar.cpp
Normal file
7
src/stellar/stellar.cpp
Normal file
@@ -0,0 +1,7 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
printf("Hello Stellar\n");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user