Rename source file in prototype pattern
+ Correct CMakeLists.txt in abstract-factory pattern + Commit name change for author of figlet fonts :)
This commit is contained in:
parent
6e2131fba0
commit
51bf18980b
|
@ -9,7 +9,7 @@ From this directory, run `npm install` to install required packages.
|
||||||
From there, we can create any contracts and deploy to development or public networks...
|
From there, we can create any contracts and deploy to development or public networks...
|
||||||
### Development Deploy
|
### Development Deploy
|
||||||
|
|
||||||
```asm
|
```
|
||||||
npx truffle develop
|
npx truffle develop
|
||||||
truffle(develop)> migrate
|
truffle(develop)> migrate
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ project(
|
||||||
)
|
)
|
||||||
add_compile_options("-Wall")
|
add_compile_options("-Wall")
|
||||||
|
|
||||||
add_library(parts "parts.cpp")
|
add_library(abstract-parts "parts.cpp")
|
||||||
add_library(abstract-factory "factory.cpp")
|
add_library(abstract-factory "factory.cpp")
|
||||||
add_executable(abstract-factory-test "main.cpp")
|
add_executable(abstract-factory-test "main.cpp")
|
||||||
target_link_libraries(abstract-factory-test abstract-factory parts)
|
target_link_libraries(abstract-factory-test abstract-factory abstract-parts)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
flf2a$ 10 7 23 0 7
|
flf2a$ 10 7 23 0 7
|
||||||
hollywood.flf by Juan Car (jc@juguete.quim.ucm.es)
|
hollywood.flf by Juan Part (jc@juguete.quim.ucm.es)
|
||||||
version 1.0 -- 5/Mar/94
|
version 1.0 -- 5/Mar/94
|
||||||
|
|
||||||
Uses spanish character set with -D option:
|
Uses spanish character set with -D option:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
flf2a$ 4 1 10 -1 7
|
flf2a$ 4 1 10 -1 7
|
||||||
madrid.flf by Juan Car (jc@juguete.quim.ucm.es)
|
madrid.flf by Juan Part (jc@juguete.quim.ucm.es)
|
||||||
version 1.0 -- 23/Nov/93
|
version 1.0 -- 23/Nov/93
|
||||||
|
|
||||||
Uses spanish character set with -D option:
|
Uses spanish character set with -D option:
|
||||||
|
|
Loading…
Reference in New Issue