1
This commit is contained in:
Alex Yatskov 2016-10-29 16:58:09 -07:00
commit 4f20331c89
3 changed files with 13 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
CMakeCache.txt
CMakeFiles
Makefile
cmake_install.cmake
zero-epwing

2
CMakeLists.txt Normal file
View File

@ -0,0 +1,2 @@
project(zero-epwing)
add_executable(zero-epwing main.c)

6
main.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello world");
return 0;
}