Skip to content

Commit

Permalink
refactor: rename example mdsanima awesome to deeply
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsanima committed Apr 23, 2024
1 parent 3f1e9c9 commit ba83d69
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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 <stdio.h>

int main(void) {
puts("Hello World from the MDSANIMA AWESOME");
puts("Hello World from the MDSANIMA DEEPLY");
return 0;
}

0 comments on commit ba83d69

Please sign in to comment.