hello world!

This commit is contained in:
Eduardo Bart 2010-11-08 20:04:33 -02:00
commit ca2e22ec41
3 changed files with 18 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
build
CMakeFiles
CMakeCache.txt
cmake_install.cmake
Makefile
otclient
!.gitignore

4
CMakeLists.txt Normal file
View File

@ -0,0 +1,4 @@
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
PROJECT(otclient)
ADD_EXECUTABLE(otclient srcs/main.cpp)

7
srcs/main.cpp Normal file
View File

@ -0,0 +1,7 @@
#include <iostream>
int main(int argc, const char *argv[])
{
std::cout << "Hello World!" << std::endl;
return 0;
}