Files
TinyORM/examples
silverqx 23d0d9045b cmake added FetchContent support
Primary fixed paths CMAKE_SOURCE_DIR, PROJECT_SOURCE_DIR,
CMAKE_BINARY_DIR and similar.

An user can use the following code in the CMakeLists.txt file to
fetch and configure the TinyORM project from GitHub:

FetchContent_Declare(TinyORM
    GIT_REPOSITORY https://github.com/silverqx/TinyORM.git
    GIT_TAG        origin/main
)
# Here you can configure TinyORM CMake options
set(TOM_EXAMPLE ON)
FetchContent_MakeAvailable(TinyORM)
2022-08-11 15:19:56 +02:00
..
2022-08-11 15:19:56 +02:00
added migrations 🔥🚀
2022-04-20 15:45:35 +02:00
added migrations 🔥🚀
2022-04-20 15:45:35 +02:00