diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..179be73 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +[Bb]uild \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..554588d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.0) +project(SimpleOctree) + +file(GLOB PROJECT_SOURCES *.cpp + ) + + +add_executable(${PROJECT_NAME} ${PROJECT_SOURCES}) + +target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_SOURCE_DIR}) \ No newline at end of file