initial project setup
This commit is contained in:
commit
c904e08ded
3 changed files with 25 additions and 0 deletions
7
BeezleBot/BeezleBot.cpp
Normal file
7
BeezleBot/BeezleBot.cpp
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
int main(int, char **)
|
||||||
|
{
|
||||||
|
std::cout << "BeezleBot running" << std::endl;
|
||||||
|
}
|
||||||
|
|
13
BeezleBot/CMakeLists.txt
Normal file
13
BeezleBot/CMakeLists.txt
Normal 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
5
CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
|
project(Beezle)
|
||||||
|
|
||||||
|
add_subdirectory(BeezleBot)
|
Loading…
Reference in a new issue