From ba83d69441c29f766f6519a6135fb3c7235fdece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20R=C3=B3=C5=BCewski?= Date: Tue, 23 Apr 2024 17:02:51 +0200 Subject: [PATCH] refactor: rename example mdsanima awesome to deeply --- CMakeLists.txt | 4 ++-- README.md | 10 +++++----- example/{mdsanima-awesome => mdsanima-deeply}/main.c | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) rename example/{mdsanima-awesome => mdsanima-deeply}/main.c (56%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 05f1560..3119a9c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ set(CMAKE_CXX_EXTENSIONS OFF) project(mdsanima VERSION 0.2.0) # Example demo programs -add_executable(${PROJECT_NAME}-awesome example/mdsanima-awesome/main.c) +add_executable(${PROJECT_NAME}-deeply example/mdsanima-deeply/main.c) add_executable(${PROJECT_NAME}-fantastic example/mdsanima-fantastic/main.cc) add_executable(${PROJECT_NAME}-incredible example/mdsanima-incredible/main.cpp) add_executable(${PROJECT_NAME}-stunning example/mdsanima-stunning/main.cxx) @@ -30,8 +30,8 @@ target_link_libraries(mdsanima-blizzard mdsanima) # Installation of the demo programs install(TARGETS mdsanima-amarok DESTINATION bin) -install(TARGETS mdsanima-awesome DESTINATION bin) install(TARGETS mdsanima-blizzard DESTINATION bin) +install(TARGETS mdsanima-deeply DESTINATION bin) install(TARGETS mdsanima-fantastic DESTINATION bin) install(TARGETS mdsanima-incredible DESTINATION bin) install(TARGETS mdsanima-stunning DESTINATION bin) diff --git a/README.md b/README.md index 3c27daa..f4f7dc3 100644 --- a/README.md +++ b/README.md @@ -41,15 +41,15 @@ You can now run the demo programs by typing the following command inside the `bu ```shell ./mdsanima-amarok -./mdsanima-awesome ./mdsanima-blizzard +./mdsanima-deeply ./mdsanima-fantastic ./mdsanima-incredible ./mdsanima-stunning ``` You can also run the programs from the top-lever directory by simply adding the full path to the -executable files like this `./build/mdsanima-awesome` command. +executable files like this `./build/mdsanima-deeply` command. ## Project Programs @@ -94,9 +94,9 @@ Here is a example instruction for compiling and linking the source code files, t command: ```shell -cd example/mdsanima-awesome && mkdir build -gcc -o build/mdsanima-awesome main.c -./build/mdsanima-awesome +cd example/mdsanima-deeply && mkdir build +gcc -o build/mdsanima-deeply main.c +./build/mdsanima-deeply ``` This method is only recommended if you want to manually build the program. diff --git a/example/mdsanima-awesome/main.c b/example/mdsanima-deeply/main.c similarity index 56% rename from example/mdsanima-awesome/main.c rename to example/mdsanima-deeply/main.c index b1152cc..b030c88 100644 --- a/example/mdsanima-awesome/main.c +++ b/example/mdsanima-deeply/main.c @@ -1,11 +1,11 @@ // Copyright (c) 2024 MDSANIMA LAB. All rights reserved. // Licensed under the MIT license. -// Example C implementation of the MDSANIMA AWESOME project. +// Example C implementation of the MDSANIMA DEEPLY project. #include int main(void) { - puts("Hello World from the MDSANIMA AWESOME"); + puts("Hello World from the MDSANIMA DEEPLY"); return 0; }