diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..09dbaaf --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.0.0) +project(EightPuzzle-AStar-IDDFS VERSION 0.1.0 LANGUAGES C CXX) + +include(CTest) +enable_testing() + +add_executable(EightPuzzle-AStar-IDDFS main.cpp) + +set(CPACK_PROJECT_NAME ${PROJECT_NAME}) +set(CPACK_PROJECT_VERSION ${PROJECT_VERSION}) +include(CPack) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..f571c3b --- /dev/null +++ b/main.cpp @@ -0,0 +1,5 @@ +#include + +int main(int, char**){ + std::cout << "Hello, from EightPuzzle-AStar-IDDFS!\n"; +}