IsoEngine/README.md

30 lines
724 B
Markdown
Raw Permalink Normal View History

# ICEngine
2024-09-14 20:46:32 -06:00
Smol little game engine since I have no idea what I'm doing
2024-09-15 01:44:52 -06:00
## Building
Find more info about building the project in the `docs/Building.md` file.
(CMake >= 3.28)
# Using the engine as a library
You're more than welcome to use this engine for your game. The recommended way to build the project is using CMake:
### Fetch Content:
```cmake
# Enable FetchContent module
include(FetchContent)
# Fetch the external repository
FetchContent_Declare(
ICEngine
2024-09-15 02:26:40 -06:00
GIT_REPOSITORY http://proudcricle/illyum/ICEngine.git
GIT_TAG main
)
# Then add your sources and executable
add_executable(MyGame main.cpp)
# Link the ICEngine library to your project
target_link_libraries(MyGame PRIVATE ICEngine)
```