initial project setup

main
Michael Mandl 2018-03-29 21:01:16 +02:00
commit c904e08ded
3 changed files with 25 additions and 0 deletions

7
BeezleBot/BeezleBot.cpp Normal file
View File

@ -0,0 +1,7 @@
#include <iostream>
int main(int, char **)
{
std::cout << "BeezleBot running" << std::endl;
}

13
BeezleBot/CMakeLists.txt Normal file
View File

@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 3.5)
project(BeezleBot LANGUAGES CXX)
add_executable(${PROJECT_NAME}
BeezleBot.cpp
)
target_compile_features(${PROJECT_NAME}
PRIVATE
cxx_std_17
)

5
CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(Beezle)
add_subdirectory(BeezleBot)