Adjusted names for project

This commit is contained in:
Trimutex 2023-11-14 14:36:09 -06:00
parent b932b14d79
commit 62ca36395f
3 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.10) cmake_minimum_required(VERSION 3.10)
project( project(
something markov
LANGUAGES CXX) LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use") set(CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use")

View File

@ -1,4 +1,4 @@
# cpp-unity-template # markov-generator
## Compiling the project ## Compiling the project
@ -16,7 +16,7 @@ The program should now be compiled at build/bin/something
Simply run the program using: Simply run the program using:
build/bin/something build/bin/markov
## Testing the Project ## Testing the Project

View File

@ -1,5 +1,5 @@
add_executable(something add_executable(markov
./main.cpp ./main.cpp
) )
target_include_directories(something PUBLIC ${CMAKE_CURRENT_LIST_DIR}) target_include_directories(markov PUBLIC ${CMAKE_CURRENT_LIST_DIR})