From 62ca36395fa7b40db720905a40251ff639cc8bff Mon Sep 17 00:00:00 2001 From: Trimutex Date: Tue, 14 Nov 2023 14:36:09 -0600 Subject: [PATCH] Adjusted names for project --- CMakeLists.txt | 2 +- README.md | 6 +++--- src/CMakeLists.txt | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index da0b217..56dd117 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10) project( - something + markov LANGUAGES CXX) set(CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use") diff --git a/README.md b/README.md index 7ea226f..d244748 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# cpp-unity-template +# markov-generator ## Compiling the project @@ -16,7 +16,7 @@ The program should now be compiled at build/bin/something Simply run the program using: - build/bin/something + build/bin/markov ## Testing the Project @@ -32,4 +32,4 @@ The program should now be compiled at build/bin/tests Simply run the tests using: - build/bin/tests \ No newline at end of file + build/bin/tests diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4a2d7eb..a024c85 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,5 +1,5 @@ -add_executable(something +add_executable(markov ./main.cpp ) -target_include_directories(something PUBLIC ${CMAKE_CURRENT_LIST_DIR}) +target_include_directories(markov PUBLIC ${CMAKE_CURRENT_LIST_DIR})