diff --git a/CMakeLists.txt b/CMakeLists.txt index 951be7f..d5a6633 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ find_package(Boost 1.81 COMPONENTS program_options REQUIRED) include_directories(.) include_directories(${Boost_INCLUDE_DIR}) -add_executable(endgame-analyzer src/main.cpp src/cli_interface.cpp src/download.cpp +add_executable(endgame-analyzer src/main.cpp src/state_explorer.cpp src/download.cpp src/game_state.cpp) target_link_libraries(endgame-analyzer cpr) diff --git a/include/cli_interface.h b/include/state_explorer.h similarity index 100% rename from include/cli_interface.h rename to include/state_explorer.h diff --git a/src/main.cpp b/src/main.cpp index 2d66e07..7d4bb80 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -7,7 +7,7 @@ #include "game_state.h" #include "download.h" -#include "cli_interface.h" +#include "state_explorer.h" namespace Hanabi { diff --git a/src/cli_interface.cpp b/src/state_explorer.cpp similarity index 100% rename from src/cli_interface.cpp rename to src/state_explorer.cpp