Skip to content

Commit

Permalink
add structure module and JsonHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
alisedighmoghadam committed Dec 25, 2023
1 parent d59e813 commit e3dc621
Show file tree
Hide file tree
Showing 9 changed files with 905 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
[submodule "externals/fmt"]
path = externals/fmt
url = https://github.com/fmtlib/fmt.git
[submodule "faker-cxx"]
path = faker-cxx
url = https://github.com/cieslarmichal/faker-cxx.git
8 changes: 6 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ set(FAKER_SOURCES
src/modules/crypto/Crypto.cpp
src/modules/computer/Computer.cpp
src/modules/vehicle/Vehicle.cpp
src/modules/science/Science.cpp)
src/modules/science/Science.cpp
src/modules/structure/Structure.cpp
src/common/JsonHelper.cpp)

set(FAKER_UT_SOURCES
src/modules/animal/AnimalTest.cpp
Expand Down Expand Up @@ -100,7 +102,9 @@ set(FAKER_UT_SOURCES
src/modules/crypto/CryptoTest.cpp
src/modules/computer/ComputerTest.cpp
src/modules/vehicle/VehicleTest.cpp
src/modules/science/ScienceTest.cpp)
src/modules/science/ScienceTest.cpp
src/modules/structure/StructureTest.cpp
src/common/JsonHelperTest.cpp)

add_library(${LIBRARY_NAME} ${FAKER_SOURCES})

Expand Down
1 change: 1 addition & 0 deletions faker-cxx
Submodule faker-cxx added at d59e81
Loading

0 comments on commit e3dc621

Please sign in to comment.