Initial import
ACMakeLists.txt
| @@ -0,0 +1,5 @@ | |||
|---|---|---|---|
| 1 | + | project(orcsmasher) | |
| 2 | + | ||
| 3 | + | add_executable(orcsmasher main.c) | |
| 4 | + | ||
| 5 | + | install(TARGETS orcsmasher RUNTIME DESTINATION bin) | |
Amain.c
| @@ -0,0 +1,6 @@ | |||
|---|---|---|---|
| 1 | + | #include <stdio.h> | |
| 2 | + | ||
| 3 | + | int main(int argc, char **argv) { | |
| 4 | + | printf("Hello World"); | |
| 5 | + | return 0; | |
| 6 | + | } | |