mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 09:39:21 +02:00
hello world!
This commit is contained in:
commit
ca2e22ec41
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
build
|
||||
CMakeFiles
|
||||
CMakeCache.txt
|
||||
cmake_install.cmake
|
||||
Makefile
|
||||
otclient
|
||||
!.gitignore
|
4
CMakeLists.txt
Normal file
4
CMakeLists.txt
Normal 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
7
srcs/main.cpp
Normal file
@ -0,0 +1,7 @@
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
std::cout << "Hello World!" << std::endl;
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user