Skip to content

Commit

Permalink
inital repo
Browse files Browse the repository at this point in the history
  • Loading branch information
golitter committed May 1, 2024
0 parents commit 312fec1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
11 changes: 11 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
5 changes: 5 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include <iostream>

int main(int, char**){
std::cout << "Hello, from EightPuzzle-AStar-IDDFS!\n";
}

0 comments on commit 312fec1

Please sign in to comment.