This is an example project for integrating Skylicht Engine into another project.
First, You need to clone and build Skylicht Engine.
C:\>git clone https://github.com/skylicht-lab/skylicht-engine.git
And build the engine
C:\skylicht-engine>cmake -S . -B ./PrjVisualStudio -G "Visual Studio 17 2022" -A x64 -DINSTALL_LIBS=ON
C:\skylicht-engine>cmake --build ./PrjVisualStudio --target install --config Release
Clone this project
C:\>git clone https://github.com/skylicht-lab/hello-skylicht.git
Build project
C:\hello-skylicht>cmake -S . -B ./PrjVisualStudio -G "Visual Studio 17 2022" -A x64
C:\hello-skylicht>cmake --build ./PrjVisualStudio --config Release
You should update the new version Bin\BuiltIn.zip from skylicht-engine project.
You can modify the skylicht-engine path from CMakeLists.txt
...
# SKYLICHT SETUP
set(SKYLICHT_ENGINE_BIN_DIR ${HELLO_SKYLICHT_SOURCE_DIR}/Bin)
set(SKYLICHT_ENGINE_PROJECT_DIR "${HELLO_SKYLICHT_SOURCE_DIR}/../skylicht-engine/InstallLibs/include")
...
You can see the Github workflow for more details Thanks you!